/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { INPUT_OPTION } from './options';
export interface IInputProps extends InputType, WidthType, MarginType {
    type?: 'text' | 'password' | 'email';
    size?: keyof typeof INPUT_OPTION;
    handleValue?: (value: string) => void;
}
declare const _default: import("react").ForwardRefExoticComponent<IInputProps & import("react").RefAttributes<HTMLInputElement>> & {
    Number: import("react").ForwardRefExoticComponent<import("./InputNumber").IInputNumberProps & import("react").RefAttributes<HTMLInputElement>>;
};
export default _default;
