import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { LogosDTO } from '../../models';
import { stringArrayType } from '../v2apiUtils';
/**
 * /v2/logos Api
 */
export declare class LogosApi extends ApiBase {
    /**
     * Returns animated image resources (logos).
     */
    get(): Promise<z.infer<typeof stringArrayType>>;
    /**
     * Returns animated image resources (logos).
     *
     * @param ids - List of logo ids, or "all"
     */
    get(ids: string[] | 'all'): Promise<z.infer<typeof LogosDTO>>;
}
