import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { InputType } from "../../interfaces/types/InputType"; import { OnChangeEventType } from "../../interfaces/types/OnChangeEventType"; export interface InputInterfaceProps extends PropsInterface { type?: InputType; placeholder?: string; value?: string; onChange?: OnChangeEventType; onKeyUp?: any; onKeyPress?: any; } export declare class Input extends PureComponent { constructor(props: any); static defaultProps: { type: string; }; render(): JSX.Element; }