/** * Style slots and CVA variants for the Switch component. * * @module @mks2508/mks-ui/react/ui/Switch/Switch.styles */ import type { StyleSlots } from '../../../core/types'; import type { SwitchSlot } from './Switch.types'; /** * Default style slots for the Switch component. * Each key maps to a visual region with its base Tailwind classes. * * - `root` - The outer switch track with rounded shape, background, and focus styles * - `thumb` - The sliding thumb indicator with sizing and shape * - `icon` - Icons positioned within the switch track or thumb * * @example * ```typescript * import { switchStyles } from './Switch.styles'; * * // Access the root slot classes * const rootClasses = switchStyles.root; * // 'group inline-flex items-center ...' * ``` */ export declare const switchStyles: StyleSlots; //# sourceMappingURL=Switch.styles.d.ts.map