export declare type FlattenResult = {
    [key: string]: string;
};
export default function flatten(obj: any): FlattenResult;
