import type { ImportRunner } from '../models/ImportRunner'; import type { ResponseRunner } from '../models/ResponseRunner'; export declare class ImportService { /** * Post json * Create new runners from json and insert them (or their teams) into the provided group * @param group * @param requestBody ImportRunner * @returns ResponseRunner * @throws ApiError */ static importControllerPostJson(group?: number, requestBody?: Array): Promise>; /** * Post orgs json * Create new runners from json and insert them (or their teams) into the provided org * @param id * @param requestBody ImportRunner * @returns ResponseRunner * @throws ApiError */ static importControllerPostOrgsJson(id: number, requestBody?: Array): Promise>; /** * Post teams json * Create new runners from json and insert them into the provided team * @param id * @param requestBody ImportRunner * @returns ResponseRunner * @throws ApiError */ static importControllerPostTeamsJson(id: number, requestBody?: Array): Promise>; /** * Post csv * Create new runners from csv and insert them (or their teams) into the provided group * @param group * @returns ResponseRunner * @throws ApiError */ static importControllerPostCsv(group?: number): Promise>; /** * Post orgs csv * Create new runners from csv and insert them (or their teams) into the provided org * @param id * @returns ResponseRunner * @throws ApiError */ static importControllerPostOrgsCsv(id: number): Promise>; /** * Post teams csv * Create new runners from csv and insert them into the provided team * @param id * @returns ResponseRunner * @throws ApiError */ static importControllerPostTeamsCsv(id: number): Promise>; }