import { AutocompleteOption, InputSizeVariant } from '.'; export declare function getSize(size: InputSizeVariant): { prefixSize: "s" | "2xs" | "xs"; gapSize: "0" | "s" | "m" | "l" | "xl" | "xs" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl"; iconSize: import("@ornament-ui/icons").IconSize; chipSize: "s" | "2xs" | "xs"; }; export declare function getSelectedOptionsList(multiValue: AutocompleteOption[]): { value: string | number; label: string; }[]; export declare function getSelectedValuesList(multiValue: AutocompleteOption[]): (string | number)[]; /** * Функция сравнения опции со значением * @param {AutocompleteOption} option - Объект опции или строка. * @param {string} value - Значение. * @returns {boolean} Результат равенства. */ export declare function getIsEqualValue(option: AutocompleteOption, value: string): boolean;