import { AxiosInstance } from 'axios'; import { GetQueueResponse, GetHistoryResponse, GetStatusResponse, GetPlansAllowedResponse, GetDevicesAllowedResponse, GetQueueItemResponse, PostEnvironmentOpenResponse, PostREResponse, GetRunsActiveResponse, PostItemAddResponse, PostItemExecuteResponse, PostItemRemoveResponse, AddQueueItemBody, ExecuteQueueItemBody, RemoveQueueItemBody } from './types'; export declare function getQueue(client: AxiosInstance): Promise; export declare function getQueueHistory(client: AxiosInstance): Promise; export declare function getStatus(client: AxiosInstance): Promise; export declare function getPlansAllowed(client: AxiosInstance): Promise; export declare function getDevicesAllowed(client: AxiosInstance): Promise; export declare function getQueueItem(client: AxiosInstance, itemUid: string): Promise; export declare function openEnvironment(client: AxiosInstance): Promise; export declare function addQueueItem(client: AxiosInstance, body: AddQueueItemBody): Promise; export declare function executeQueueItem(client: AxiosInstance, body: ExecuteQueueItemBody): Promise; export declare function removeQueueItem(client: AxiosInstance, body: RemoveQueueItemBody): Promise; export declare function getRunsActive(client: AxiosInstance): Promise; export declare function startRE(client: AxiosInstance): Promise; export declare function pauseRE(client: AxiosInstance): Promise; export declare function resumeRE(client: AxiosInstance): Promise; export declare function abortRE(client: AxiosInstance): Promise; //# sourceMappingURL=requests.d.ts.map