import type { z } from 'zod';
import { ApiBase } from '../../base/apiBase';
import { SkiffsDTO } from '../../models';
import { numberArrayType } from '../v2apiUtils';
/**
 * /v2/skiffs Api
 */
export declare class SkiffsApi extends ApiBase {
    /**
     * Returns all Skiff skins in the game.
     */
    get(): Promise<z.infer<typeof numberArrayType>>;
    /**
     * Returns all Skiff skins in the game.
     *
     * @param ids - List of skiff ids, or "all"
     */
    get(ids: number[] | 'all'): Promise<z.infer<typeof SkiffsDTO>>;
}
