/** * Style slots and CVA variants for the Progress component. * * @module @mks2508/mks-ui/react/ui/Progress/Progress.styles */ import type { StyleSlots } from '../../../core/types'; import type { ProgressSlot } from './Progress.types'; /** * Default style slots for the Progress component. * Each key maps to a visual region with its base Tailwind classes. * * - `root` - The outer container with flex column layout * - `track` - The background track with rounded shape and overflow hidden * - `indicator` - The filled bar that animates to current percentage * - `label` - Optional descriptive label text * - `value` - Optional animated numeric value * * @example * ```typescript * import { progressStyles } from './Progress.styles'; * * // Access the track slot classes * const trackClasses = progressStyles.track; * // 'relative h-2 w-full overflow-hidden rounded-full bg-secondary' * ``` */ export declare const progressStyles: StyleSlots; //# sourceMappingURL=Progress.styles.d.ts.map