import React from 'react'; export interface TextFieldProps extends Omit, 'prefix' | 'suffix'> { /** Text fields default to `display: block;`. Set this to `true` to apply the inline modifier. */ inline?: boolean; /** Make the text right aligned */ textRightAlign?: boolean; /** Add a prefix inside the input */ prefix?: React.ReactNode; /** Add a suffix inside the input */ suffix?: React.ReactNode; } export declare const TextField: React.ForwardRefExoticComponent>;