import { ASMApiService } from './asmApi'; import { ICommandCheck } from '../model/deploymentDescriptor'; export declare class ASMCommandCheckService extends ASMApiService { private _commandLocations; private _pingLocations; private _portLocations; constructor(debug?: boolean); init(all?: boolean): Promise; getCommandLocations(): Promise; getPortLocations(): Promise; getPingLocations(): Promise; getAllCategories(): Promise; findLocation(nameMatch: string): any; private createArguments; private createBodyAndPath; create(checkConfig: ICommandCheck, config: any, groups: number[]): Promise; update(id: number, checkConfig: ICommandCheck, config: any): Promise; }