export interface CamelCaseOptions {
    reactCompat?: boolean;
}
export declare const camelCase: (property: string, options?: CamelCaseOptions) => string;
