declare const findKey: (obj: {
    [key: string]: any;
}, cb: (arg: any) => any) => string | undefined;
export default findKey;
