import type { ElProps } from '..'; export declare const INPUT_SIZES: readonly ["sm", "md", "lg"]; export type InputSizes = typeof INPUT_SIZES[number]; export declare const INPUT_STATES: readonly ["valid", "invalid"]; export type InputStates = typeof INPUT_STATES[number]; export declare const INPUT_TYPES: readonly ["text", "password", "email"]; export type InputTypes = typeof INPUT_TYPES[number]; export interface InputProps extends Partial { disabled?: boolean; placeholder?: string; readonly?: boolean; size?: InputSizes; value?: any; state?: InputStates; borderRounded?: boolean; borderFlush?: boolean; type?: InputTypes; mask?: string; maskOptions?: object; }