import React from 'react'; import { FieldProps, InputProps } from '../../types'; export interface TextFieldProps extends FieldProps, InputProps { prefix?: string; } export interface PrefixProps { prefix: string; } export interface LabelProps { withHelpText?: boolean; } declare const TextField: React.ForwardRefExoticComponent>; export default TextField;