import { type BaseTrackProps } from "./util"; type CompositeTrack = BaseTrackProps & { trackBorderColor: string; trackTextColor: string; color: string[]; compositeBreakValues: number[]; }; /** * CompositeTrack component that renders a track with a label, percentage, and a multi-slider output. * The one inside another track * * @param {Object} props - The properties passed to the component. * @param {string} props.label - The label text to display. * @param {number} props.perc - The percentage value to display. * @param {string} props.trackTextColor - The color of the text for the label and percentage. * @param {string} props.trackBorderColor - The color of the track border. * @param {number} props.index - The index of the current track. * @param {number} props.breakValuesLen - The length of break values. * @param {Array} props.color - An array of colors for the multi-slider output. * @param {Array} props.compositeBreakValues - An array of break values for the multi-slider output. * @param {Object} props.style - Additional style properties to apply to the track. * * @returns {JSX.Element} The rendered track component with a label, percentage, and multi-slider output. */ export declare const CompositeTrack: (props: CompositeTrack) => import("react/jsx-runtime").JSX.Element; export default CompositeTrack;