import { FC } from "react"; export type TextFieldProps = { label: string; onChange: (newValue: string) => void; value: string; errors?: string[]; helperText?: string; placeholder?: string; cols?: number; autoFocus?: boolean; }; declare const TextField: FC; export default TextField;