export interface AbortExecutionOptions { colorize?: boolean; } export declare function abortExecution(msg: string, ...args: unknown[]): Error; export declare function abortExecutionWithOpts({ colorize }: AbortExecutionOptions | undefined, msg: string, ...args: unknown[]): Error; export declare function abortExecutionWithError(error: any, msg: string, ...args: unknown[]): Promise; export declare function getExecutionErrorBody(error: any): Promise;