import React, { InputHTMLAttributes } from 'react'; import { IconElement } from '../data/icon'; import { MarginProps, WidthProps, FlexChildProps } from '../style/helpers'; export interface TextInputProps extends MarginProps, WidthProps, FlexChildProps, Omit, 'width'> { readonly label?: string; readonly description?: string; readonly errorMessage?: string; readonly icon?: IconElement; } export declare const TextInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=textInput.d.ts.map