export declare type KeyType = 'CamelCase' | 'SnakeCase'; export declare function convertSnakeCaseToCamelCase(key: string): string; export declare function convertCamelCaseToSnakeCase(key: string): string;