/** * Style slots and CVA variants for the Checkbox component. * * @module @mks2508/mks-ui/react/ui/Checkbox/Checkbox.styles */ import type { StyleSlots } from '../../../core/types'; import type { CheckboxSlot } from './Checkbox.types'; /** * Default style slots for the Checkbox component. * Each key maps to a visual region with its base Tailwind classes. * * - `root` - The outer checkbox button with border, sizing, and focus styles * - `indicator` - The SVG indicator element with sizing * * @example * ```typescript * import { checkboxStyles } from './Checkbox.styles'; * * // Access the root slot classes * const rootClasses = checkboxStyles.root; * // 'inline-flex items-center justify-center ...' * ``` */ export declare const checkboxStyles: StyleSlots; //# sourceMappingURL=Checkbox.styles.d.ts.map