export declare function convertCamelCaseToCssProperties(inputString: string): string; export declare function getCSSVariable(cssProperty: string): string; declare const cssFunctions: { getCSSVariable: typeof getCSSVariable; convertCamelCaseToCssProperties: typeof convertCamelCaseToCssProperties; }; export default cssFunctions;