import type { AnyRecord, NonMutable } from './helpers';
export declare enum ValueProcessorTarget {
    CSS = "css",
    Default = "default"
}
export type ValueProcessorContext = {
    target: ValueProcessorTarget;
};
export type ValueProcessor<V = unknown, R = V> = (value: NonMutable<V>, context?: ValueProcessorContext) => R | Record<string, R>;
export type ConfigPropertyAlias<P extends AnyRecord> = {
    as: keyof P;
};
//# sourceMappingURL=config.d.ts.map