import React from 'react'; import { DefaultProps, FlowindSize } from '../../styles'; import { InputSharedProps, InputStylesNames, InputWrapperBaseProps, InputWrapperStylesNames } from '../input'; export type TextInputStylesNames = InputStylesNames | InputWrapperStylesNames; export interface TextInputProps extends DefaultProps, InputSharedProps, InputWrapperBaseProps, Omit, 'size' | 'prefix'> { /** Input element type */ type?: React.HTMLInputTypeAttribute; /** Props passed to root element (InputWrapper component) */ wrapperProps?: Record; /** Input size */ size?: FlowindSize; __staticSelector?: string; } export declare const TextInput: React.ForwardRefExoticComponent>;