import * as React from 'react'; import { Icon, CX, TextInputCoreProps } from '@epam/uui-core'; export type IRenderInputProps = React.DetailedHTMLProps, HTMLInputElement>; export interface TextInputProps extends TextInputCoreProps { /** Overrides accept (check) icon */ acceptIcon?: Icon; /** Overrides cancel (cross) icon */ cancelIcon?: Icon; /** Overrides dropdown (chevron) icon */ dropdownIcon?: Icon; /** CSS class(es) to put to the HTML Input element */ inputCx?: CX; /** overrides rendering of HTML Input element */ renderInput?: (props: IRenderInputProps) => React.JSX.Element; } export declare const TextInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=TextInput.d.ts.map