import * as React from 'react'; export interface InputProps { testId?: string; icon?: React.ReactNode; type?: 'text' | 'email' | 'search' | 'password'; value?: string; disabled?: boolean; onChange?: (event: React.ChangeEvent) => void; placeholder?: string; } export default class Input extends React.PureComponent { static defaultProps: { type: string; }; render(): JSX.Element; }