/** @format */ import React, { FC } from "react"; interface TextFieldProps { width?: string; style?: React.CSSProperties; onChange: (text: string) => void; fontSize?: string; fontWeight?: string; textAlign?: string; color?: string; minHeight?: string; disabled?: boolean; value?: string; placeholder?: string; multiline?: boolean; maxChar?: number; onFocus?: () => void; onBlur?: () => void; hiddenBorder?: boolean; type?: string; padding?: string; selectOnFocus?: boolean; autoFocus?: boolean; onKeyDown?: (event: any) => void; } declare const TextField: FC; export default TextField;