import { TLayer } from '../../../types/TLayer'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; import { TUiColorsSystemMessage } from '../../../types/TUiColorsSystemMessage'; export type TLabeledInput = { id?: string; label?: string; hasPlaceholder?: boolean; inputElement?: React.ReactNode; systemMessageType?: TUiColorsSystemMessage; hasValue?: boolean; themeType?: Exclude; layer?: TLayer; isTextArea?: boolean; underline?: boolean; isActive?: boolean; align?: TTextAlignLC; labelVariant?: 'static' | 'animated'; };