import { FC, InputHTMLAttributes } from "react"; //#region src/components/form/text-field/text-field.d.ts type Props = { invalid?: boolean; } & Omit, 'type' | 'className' | 'style'>; declare const TextField: FC; //#endregion export { TextField };