import { AutomateBaseAPI } from '../BaseAPI'; import { components } from '../AutomateTypes'; import { CommonParameters } from '../AutomateAPI'; type schemas = components['schemas']; /** {@link LabTechModelsRemoteAgentSchedule} */ export type LabTechModelsRemoteAgentSchedule = schemas['LabTech.Models.RemoteAgentSchedule']; /** {@link LabTechModelsRemoteAgentTemplate} */ export type LabTechModelsRemoteAgentTemplate = schemas['LabTech.Models.RemoteAgentTemplate']; /** * RemoteAgent module * @public */ export declare class RemoteAgentAPI extends AutomateBaseAPI { getRemoteAgentScheduleList(params?: CommonParameters): Promise>; postRemoteAgentSchedule(RemoteAgentSchedule: LabTechModelsRemoteAgentSchedule): Promise; getRemoteAgentTemplateListAsync(params?: CommonParameters): Promise>; postRemoteAgentTemplateAsync(RemoteAgentTemplate: LabTechModelsRemoteAgentTemplate): Promise; } export {}; //# sourceMappingURL=RemoteAgentAPI.d.ts.map