/** * @description Returns the given value converted to camel-case. * @example toCamelCase('padding-top') => 'paddingTop' * */ export declare const toCamelCase: (value: string) => string;