import type { NonMutable } from './helpers'; export declare enum ValueProcessorTarget { CSS = "css", Default = "default" } export type ValueProcessorContext = { target: ValueProcessorTarget; }; export type ValueProcessor = (value: NonMutable, context?: ValueProcessorContext) => R | Record; export type ConfigPropertyAlias

= { as: keyof P; }; //# sourceMappingURL=config.d.ts.map