import { default as React } from 'react'; import { SafeOmit } from '../../../.deps/utils/src'; import { Complete, Size } from '../../../types'; import { CommonInputProps, PlaceholderProps } from '../types'; export interface TextInputCommonProps extends SafeOmit, PlaceholderProps { } export interface TextInputOwnProps { label?: string; value?: string | number; defaultValue?: string | number; width?: Size; } /** @inheritdoc */ export interface TextInputProps extends TextInputOwnProps, TextInputCommonProps { } type GetInputClassName = Complete>; export declare const getTextInputClassName: ({ width, error, warning }: GetInputClassName) => string; export declare const TextInput: React.ForwardRefExoticComponent>; export {};