import { SystemPropNames } from './systemProps';
/** @deprecated */
export type StyleFnConfig = {
    name: string;
    properties: string[];
    system: SystemPropNames | 'none';
};
/** @deprecated */
export type StyleFns = {
    [key: string]: (value: unknown) => {};
};
/** @deprecated */
export declare function buildStyleFns(styleFnConfigs: StyleFnConfig[]): StyleFns;
/** @deprecated */
export declare function buildStylePropFn<P extends {}>(styleFns: StyleFns): (props: P) => {};
//# sourceMappingURL=buildStyleFns.d.ts.map