import type { CreateScan } from '../models/CreateScan';
import type { CreateTrackScan } from '../models/CreateTrackScan';
import type { ResponseEmpty } from '../models/ResponseEmpty';
import type { ResponseScan } from '../models/ResponseScan';
import type { ResponseTrackScan } from '../models/ResponseTrackScan';
import type { UpdateScan } from '../models/UpdateScan';
import type { UpdateTrackScan } from '../models/UpdateTrackScan';
export declare class ScanService {
/**
* Get all
* Lists all scans (normal or track) from all runners.
This includes the scan's runner's distance ran.
* @result any
* @throws ApiError
*/
static scanControllerGetAll(): Promise<(Array | Array)>;
/**
* Post
* Create a new scan (not track scan - use /scans/trackscans instead).
Please rmemember to provide the scan's runner's id and distance.
* @param requestBody CreateScan
* @result ResponseScan
* @throws ApiError
*/
static scanControllerPost(requestBody?: CreateScan): Promise;
/**
* Get one
* Lists all information about the scan whose id got provided. This includes the scan's runner's distance ran.
* @param id
* @result any
* @throws ApiError
*/
static scanControllerGetOne(id: number): Promise<(ResponseScan | ResponseTrackScan)>;
/**
* Put
* Update the scan (not track scan use /scans/trackscans/:id instead) whose id you provided.
Please remember that ids can't be changed and distances must be positive.
* @param id
* @param requestBody UpdateScan
* @result ResponseScan
* @throws ApiError
*/
static scanControllerPut(id: number, requestBody?: UpdateScan): Promise;
/**
* Remove
* Delete the scan whose id you provided.
If no scan with this id exists it will just return 204(no content).
* @param id
* @param force
* @result ResponseScan
* @result ResponseEmpty
* @throws ApiError
*/
static scanControllerRemove(id: number, force?: boolean): Promise;
/**
* Post track scans
* Create a new track scan (for "normal" scans use /scans instead).
Please remember that to provide the scan's card's station's id.
* @param requestBody CreateTrackScan
* @result ResponseTrackScan
* @throws ApiError
*/
static scanControllerPostTrackScans(requestBody?: CreateTrackScan): Promise;
/**
* Put track scan
* Update the track scan (not "normal" scan use /scans/trackscans/:id instead) whose id you provided.
Please remember that only the validity, runner and track can be changed.
* @param id
* @param requestBody UpdateTrackScan
* @result ResponseTrackScan
* @throws ApiError
*/
static scanControllerPutTrackScan(id: number, requestBody?: UpdateTrackScan): Promise;
}