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