import React, { CSSProperties } from "react"; import * as S from "../styled-components"; export declare type TInputType = "text" | "textarea" | "password" | "number"; declare type TTextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent"; export interface ITextBox extends S.IMainCssType { title?: string; validationMessage?: string; value?: string | number; palceholder?: string; className?: string; width?: string | number; textalign?: TTextAlign; onChange?: (event: React.ChangeEvent) => void; onBlur?: (event: React.FocusEvent) => void; inputStyle?: CSSProperties; inputType?: TInputType; rows?: number; cols?: number; required?: boolean; disabled?: boolean; id: string; readOnly?: boolean; fonstSize?: string; autoFocus?: boolean; height?: string | number; padding?: string | number; type?: "primary" | "default"; } export declare const TextBox: React.FC; export {};