import type { CSSProperties } from 'react'; type GetTrackSegmentsParams = { min: number; max: number; value: number; cutValues: number[]; isVertical: boolean; }; type TrackSegmentsResult = { trackSegments: CSSProperties[]; progressSegments: CSSProperties[]; }; export declare const getTrackSegments: ({ min, max, value, cutValues, isVertical, }: GetTrackSegmentsParams) => TrackSegmentsResult; export {}; //# sourceMappingURL=getTrackSegments.d.ts.map