declare interface SwitchVariant { /** * @default 32 */ size: "16" | "24" | "32"; } declare type SwitchVariantMap = { [key in keyof SwitchVariant]: Array; }; export declare type SwitchVariantProps = Partial; export declare type SwitchSlotName = "root" | "label"; export declare const switchVariantMap: SwitchVariantMap; export declare const switchStyle: (( props?: SwitchVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [SwitchVariantProps, Omit]; }