declare interface SwitchmarkVariant { /** * @default "brand" */ tone: "neutral" | "brand"; /** * @default 32 */ size: "16" | "24" | "32"; } declare type SwitchmarkVariantMap = { [key in keyof SwitchmarkVariant]: Array; }; export declare type SwitchmarkVariantProps = Partial; export declare type SwitchmarkSlotName = "root" | "thumb"; export declare const switchmarkVariantMap: SwitchmarkVariantMap; export declare const switchmark: (( props?: SwitchmarkVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [SwitchmarkVariantProps, Omit]; }