import { ReactElement } from 'react'; import { InputProps, StatefulInputProps, MaskedInputProps } from './types'; export declare const Input: { (props: InputProps): ReactElement; displayName: string; }; export declare const StatefulInput: { (props: StatefulInputProps): ReactElement; displayName: string; }; export declare const MaskedInput: { (props: MaskedInputProps): ReactElement; displayName: string; };