import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { RaidsDTO } from '../../models';
import { stringArrayType } from '../v2apiUtils';
/**
 * /v2/raids Api
 */
export declare class RaidsApi extends ApiBase {
    /**
     * Returns information on in-game raids.
     */
    get(): Promise<z.infer<typeof stringArrayType>>;
    /**
     * Returns information on in-game raids.
     *
     * @param ids - Raid ids, or "all"
     */
    get(ids: string[] | 'all'): Promise<z.infer<typeof RaidsDTO>>;
}
