/** * Variant System for LiqUIdify Components * * Centralized variant management using Panda CSS patterns and tokens */ type VariantProps = { [K in keyof T]?: T[K] extends Record ? keyof T[K] : T[K] extends readonly (infer U)[] ? U : never; }; export type InferVariantProps = VariantProps; type VariantConfig = Record; export declare const createVariants: (config: T & { base?: string | string[]; defaults?: Partial>; }) => (props?: VariantProps) => string; export {}; //# sourceMappingURL=variant-system.d.ts.map