import { HTMLProps, PropsWithRef } from 'react';
import { CSSObject } from '@emotion/react';
type DataListOptions = {
value: number;
label: string;
heading?: string;
};
export interface IndicatorRangeInputProps extends PropsWithRef> {
label?: string;
wrapperCSS?: CSSObject;
onOptionClick?: (value: number) => void;
dataListOptions: DataListOptions[];
}
export declare const IndicatorRangeInput: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>;
export {};
//# sourceMappingURL=IndicatorRangeInput.d.ts.map