export declare const snakeCase: (input: string) => string;
export declare const snakeCaseKeys: (obj: {
    [index: string]: any;
}) => {
    [index: string]: any;
};
