import { Locales } from '../../constants/Locales'; import { BaseSelectItem, SelectItem, Translation } from "./types"; export declare const getPreparedItems: (items: SelectItem[], keys: { itemItems: ItemsKey; itemValue: ValueKey; }) => BaseSelectItem[]; export declare const areValuesEqual: (a: unknown, b: unknown, returnObject: boolean | undefined, itemValue: PropertyKey) => boolean; export declare const getValue: (value: unknown, itemValue: PropertyKey) => unknown; export declare const TRANSLATIONS: Record;