import React from 'react'; import { IEditableDebouncerOptions, Overwrite } from '@epam/uui-core'; import { TextInputProps as CoreTextInputProps } from '@epam/uui-components'; import { IHasEditMode, ControlSize } from '../types'; type TextInputMods = IHasEditMode & { /** * Defines component size. * @default '36' */ size?: ControlSize | '60'; }; export interface TextInputModsOverride { } /** Represents the properties for a TextInput component. */ export interface TextInputProps extends CoreTextInputProps, Overwrite { } /** Represents the properties for a SearchInput component. */ export interface SearchInputProps extends TextInputProps, IEditableDebouncerOptions { } export declare const TextInput: React.ComponentType>; export declare const SearchInput: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=TextInput.d.ts.map