export declare const camelCaseKeys: (obj: T, skipKeys?: string[], skipObjectKeys?: string[]) => T; export declare const snakeCaseKeys: (obj: T, skipKeys?: string[], skipObjectKeys?: string[]) => T; export declare const pascalCaseKeys: (obj: T, skipKeys?: string[], skipObjectKeys?: string[]) => T; export declare const titleCase: (s?: string) => string;