import { TItemID } from "@albion-data/types"; import { TItemLocaleOptions } from "./types"; export declare type TSearchResponse = { id: TItemID; name: string; description: string; }; declare type GetItemLocaleParams = { identifier: string; locale?: TItemLocaleOptions; }; export declare function getItemLocale({ identifier, locale, }: GetItemLocaleParams): Promise; export {};