/** * @param ob Object The object to flatten * @param prefix String (Optional) The prefix to add before each key, also used for recursion **/ export declare function flattenObject(ob: any, prefix?: string, result?: { [key: string]: any; }): { [key: string]: any; }; //# sourceMappingURL=object.d.ts.map