import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { LegendaryArmoryDTO } from '../../models';
import { numberArrayType } from '../v2apiUtils';
/**
 * /v2/legendaryarmory Api
 */
export declare class LegendaryArmoryApi extends ApiBase {
    /**
     * Returns information about Legendary Armory items that are available in-game
     */
    get(): Promise<z.infer<typeof numberArrayType>>;
    /**
     * Returns information about Legendary Armory items that are available in-game
     *
     * @param ids - List of legendary armory item ids
     */
    get(ids: number[] | 'all'): Promise<z.infer<typeof LegendaryArmoryDTO>>;
}
