import Base, { MaybeRaw } from "../../../Base"; import { High5OrganizationExecutionLogs } from "./log/index"; import { High5OrganizationExecutionStates } from "./status/index"; export declare class High5OrganizationExecute extends Base { get logs(): High5OrganizationExecutionLogs; private _logs?; get status(): High5OrganizationExecutionStates; private _status?; /** * Cancel stream execution * @param orgName Name of the Organization * @param spaceName Name of the Space * @param high5ExecutionId ID of the stream execution * @returns 204 No Content */ cancelExecution(orgName: string, spaceName: string, high5ExecutionId: string, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }