import { type DocumentWorkflowOptions } from "./runner.js"; export interface DocumentWorkflowSequenceOptions extends Omit { docPaths: string[]; stopOnFailure?: boolean; onSequenceProgress?: (index: number, total: number, docPath: string) => void; } export declare function runDocumentWorkflowSequence(options: DocumentWorkflowSequenceOptions): Promise;