import { InputTextProps } from '../../common/components/input-text/InputText'; import { BaseInputFieldProps } from '../../common/types/input'; export interface TextFieldProps extends BaseInputFieldProps, InputTextProps { } /** * controlled * uncontrolled * * The `` component is a simple text input.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/619e3f21fa4e5157765890ba) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text) for further information about the element and related attributes. */ declare const TextField: import("react").ForwardRefExoticComponent>; export default TextField;