import { IStatus } from '../../../types/IStatus'; import { TLayer } from '../../../types/TLayer'; import { TUiColorTypes } from '../../../types/TUiColorTypes'; export type TSingleInputs = { length?: number; handler?: (value: string) => void; status?: Pick; automaticCase?: 'upper' | 'lower'; themeType?: TUiColorTypes; layer?: TLayer; }; export type TSingleInputsWithHTMLInputAttrs = TSingleInputs & React.InputHTMLAttributes;