export declare function listWorkflows(opts: { json?: boolean; quiet?: boolean; includeSystem?: boolean; }): Promise; export declare function invokeWorkflow(type: string, opts: { data?: string; json?: boolean; }): Promise; export declare function getWorkflowStatus(id: string, opts: { json?: boolean; }): Promise; export declare function getWorkflowResult(id: string, opts: { json?: boolean; }): Promise; export declare function terminateWorkflow(id: string): Promise;