import React from 'react'; import { NumberInputProps } from '../../../number-input'; export interface RangeInputProps { fieldProps?: { props?: [NumberInputProps?, NumberInputProps?]; value?: [string, string]; onChange?: (value: [string, string] | undefined) => void; }; } export declare const RangeInput: React.FC;