import React from 'react'; import './style.scss'; import type { IInputPropsBase } from '@adam-sv/arc'; export type SingleLineTextInputType = 'text' | 'password' | 'integer' | 'float'; export type TextInputType = 'text' | 'password' | 'integer' | 'float'; export interface ITextInputProps extends IInputPropsBase { type?: SingleLineTextInputType; value?: number | string; min?: number; max?: number; inputRef?: React.RefObject; } export declare function TextInput(props: ITextInputProps): import("react/jsx-runtime").JSX.Element;