import type { TComponentIcon } from "@helpers/types"; import type { InputProps } from "@components/Input/Input.interface"; export interface DropdownProps { dropdownTitle?: string; dropdownItems: DropdownItemProps[]; inputValue: string; isCreatable?: boolean; } export interface DropdownListItemProps { label: string; value: string; icon?: TComponentIcon; } export interface DropdownItemProps extends Omit { } export interface InputAutocompleteProps extends Omit, Omit { value: string; onClear?(): void; }