export interface CamelizeOptions { pascalCase?: boolean; preserveConsecutiveUppercase?: boolean; locale?: string | string[] | boolean; } export declare function camelize(input: string | string[], options?: Partial): string;