import { Component } from '../component'; /** * Converts property to an attribute * transforms the camel cased prop to dash ex: camelCase -> camel-case * @param { string } name * @param { any } value * @param { Component } component */ export declare const toAttribute: (name: string, value: any, component: Component) => { name: string; value: any; }; /** * Converts attribute to a property * transforms the dash prop to camel case ex: camel-case -> camelCase * @param { string } name * @param { any } value * @param { Component } component */ export declare const toProperty: (name: string, value: any, component: Component) => { name: string; value: any; }; //# sourceMappingURL=property-converter.d.ts.map