export declare type IterateeFunc = (d: T) => Y; export declare type Iteratee = keyof T | IterateeFunc; export declare function getAccessor(iteratee: string | Iteratee): IterateeFunc;