import { default as React } from 'react'; export interface SliderProps { /** Visually hidden label to describe the input */ label: string; /** `name` attribute passed to the lower value input thumb */ lowerName: string; /** `name` attribute passed to the higher value input thumb */ higherName: string; /** value of the input */ value?: number[]; /** change callback invoked when the value of the `input` changes */ onChange?: (value: number[]) => void; /** optionally format the input value */ formatOptions?: Intl.NumberFormatOptions; /** lower bound for the input, inclusive */ minValue?: number; /** upper bound for the input, inclusive */ maxValue?: number; /** if uncontrolled, initial value for the input */ defaultValue?: number[]; /** increment number for the range input */ step?: number; /** * Text rendered within an `` element. * If omitted, will default to `Between {lower} and {upper}` */ output?: string; } declare const Slider: (props: SliderProps) => React.JSX.Element; export default Slider; //# sourceMappingURL=index.d.ts.map