export declare function get<T>(obj: {
    [key: string]: any;
} | undefined, keypath: string | string[], defaultValue?: T): T | any;
