import { type FC } from "react"; import type VibeComponentProps from "../../../types/VibeComponentProps"; import { type SliderColor } from "../Slider.types"; export interface SliderFilledTrackProps extends VibeComponentProps { /** * The size of the filled track, based on the selected value. */ dimension?: number; /** * The offset from the start of the track. */ offset?: number; /** * If true, the filled track starts from the end instead of the beginning. */ reverse?: boolean; /** * The color of the filled track. */ color: SliderColor; } declare const SliderFilledTrack: FC; export default SliderFilledTrack;