import React, { ChangeEventHandler } from 'react'; import { TextInputProps } from '../TextInput'; export declare type DoubleTextInputProps = Omit & { /** The `from` label for the double text input*/ labelFrom: string; /** The `to` label for the double text input*/ labelTo: string; /** The `from` placeholder for the double text input*/ placeholderFrom?: string; /** The variant of the component that decides the colors */ variant?: 'solid' | 'outline'; /** The `to` placeholder for the double text input*/ placeholderTo?: string; /** The `from` value for the double text input*/ from?: string | ReadonlyArray | number; /** The `to` value for the double text input*/ to?: string | ReadonlyArray | number; /** On change `from` event handlers */ onChangeFrom?: ChangeEventHandler; /** On change `to` event handlers */ onChangeTo?: ChangeEventHandler; /** Whether the input is disabled or not */ disabled?: boolean; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;