import { ServiceRESTResponse } from "../sn_internal_services/ServiceRESTResponse"; import { GlideRecord } from "../types/GlideRecord"; export declare class TrainingRequest { cancelTraining(solutionSysId?: string): ServiceRESTResponse; cancelUpdateJob(solutionSysId?: string): ServiceRESTResponse; constructor(solutionDefinition?: GlideRecord); getTrainingJobsState( origin?: string, lastTime?: string, solutionIds?: string ): ServiceRESTResponse; isInstanceAutoTrainingEligible(): boolean; postServiceRequest( solutionSysId?: string, token?: string ): ServiceRESTResponse; submitForTraining(solutionDefinitionSysID?: string): number; updateInstanceAutoTrainEligibleInfo(): boolean; }