///
import { AxisDomain, RangeSelectorOptions } from '../model';
import { ExternalStyles } from '../../../styles';
export interface ChartRangeSelectorProps extends RangeSelectorOptions {
style?: ExternalStyles;
onChange?: (newValue: Partial) => void;
}
export declare function ChartRangeSelector(props: ChartRangeSelectorProps): JSX.Element;