import React from 'react'; import { type ElementProps } from '../../../types/element'; import { type InputWrapperProps } from '../Input/@compound'; import { type InputProps } from '../Input/Input'; export type TextInputProps = Omit & Pick & { wrapperProps?: ElementProps<'div'>; }; export declare const TextInput: React.ForwardRefExoticComponent & Pick & { wrapperProps?: ElementProps<"div"> | undefined; } & React.RefAttributes>; export declare function convertSizeToWrapperSize(size: InputProps['size']): InputWrapperProps['size']; //# sourceMappingURL=TextInput.d.ts.map