import { RendererReactOptions } from './types'; export declare function fromCamelCaseToKebab(style: Record): Record; export declare const getComponentConfig: (config: RendererReactOptions, reactComponent: React.ComponentType) => { cmpConfig: import('./types').ComponentConfig; type: string; } | undefined; export declare function normalizeStyleObject(styleObj: any): React.CSSProperties | undefined; export declare function attrsToReactProps(attrs: Record): Record;