import type { Operation, TMappedResponse } from '@linkedapi/node'; import type { TWorkflowInProgressDetails } from './types/workflow-in-progress-details.type'; import type { TWorkflowInProgressStatus } from './types/workflow-in-progress-status.type'; import type { TWorkflowStartedDetails } from './types/workflow-started-details.type'; declare function executeWorkflowWithDetails(operation: Operation, params: TParams): Promise; declare function getWorkflowStatusDetails(operation: Operation, workflowId: string): Promise | TWorkflowInProgressDetails>; declare function isWorkflowInProgress(status: unknown): status is { workflowStatus: TWorkflowInProgressStatus; message?: string; }; export declare const workflowDetails: { readonly executeWorkflowWithDetails: typeof executeWorkflowWithDetails; readonly getWorkflowStatusDetails: typeof getWorkflowStatusDetails; readonly isWorkflowInProgress: typeof isWorkflowInProgress; }; export {}; //# sourceMappingURL=workflow-details.d.ts.map