import { PropertyKey } from './isPropertyKey'; type GoodMethodKey = K extends keyof O ? (O[K] extends Function | null | undefined ? K : never) : K; declare function GetMethod( V: O, P: K & GoodMethodKey, ): Function | undefined; export = GetMethod;