import * as React from "react"; export interface RangeProps { onChange: (range: { min: number; max: number; }) => void; onFinished: (range: { min: number; max: number; }) => void; min: number; max: number; minValue?: number; maxValue?: number; items: Array; disabled?: boolean; mod?: string; className?: string; translate?: (string) => string; } export declare const RangePropTypes: { onChange: React.Validator; onFinishd: React.Validator; min: React.Validator; max: React.Validator; minValue: React.Requireable; maxValue: React.Requireable; items: React.Requireable; disabled: React.Requireable; mod: React.Requireable; className: React.Requireable; translate: React.Requireable; };