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