export declare function mapKeys(obj: any, fn: ObjectFunction): void; declare type ObjectFunction = (key: string, val: any) => string; export {};