import { Dict } from "@teste-ui/utils"; import { ResponsiveValue, WithCSSVar } from "./utils"; declare type Theme = WithCSSVar; declare type Config = { parts?: string[]; baseStyle?: Dict; variants?: Dict; sizes?: Dict; }; declare type ValueType = ResponsiveValue; declare type Values = { theme: Theme; variant?: ValueType; size?: ValueType; }; export declare function resolveStyleConfig(config: Config): (props: Values) => any; export {}; //# sourceMappingURL=style-config.d.ts.map