type Dict<T> = {
    [key: string]: T;
};
export declare function toDictString(obj: Record<string, any>): Dict<string>;
export {};
