import './index.css'; import { ReactNode } from 'react'; import * as React from 'react'; export type TextFieldProps = { prefix?: ReactNode; suffix?: ReactNode; value?: string; onChange?: (value: string) => void; showCount?: boolean; showLabel?: boolean; assistiveText?: string; invalid?: boolean; label?: string; requiredText?: string; disabled?: boolean; subLabel?: React.ReactNode; rdfaPrefix?: string; getCount?: (value: string) => number; } & Omit, 'prefix' | 'onChange'>; declare const TextField: React.ForwardRefExoticComponent<{ prefix?: ReactNode; suffix?: ReactNode; value?: string; onChange?: (value: string) => void; showCount?: boolean; showLabel?: boolean; assistiveText?: string; invalid?: boolean; label?: string; requiredText?: string; disabled?: boolean; subLabel?: React.ReactNode; rdfaPrefix?: string; getCount?: (value: string) => number; } & Omit, HTMLInputElement>, "ref">, "prefix" | "onChange"> & React.RefAttributes>; export default TextField; //# sourceMappingURL=index.d.ts.map