export interface RunContinuationCommandOptions { readonly cwd: string; readonly configPath: string; readonly env: Record; readonly positionals: readonly string[]; readonly json?: boolean; readonly limit?: number; readonly cursor?: string; readonly fetchImpl?: typeof fetch; readonly stdout?: (text: string) => void; readonly stderr?: (text: string) => void; } /** Authenticated operator client. It never opens or rewrites the state ledger directly. */ export declare function runContinuationCommand(options: RunContinuationCommandOptions): Promise; //# sourceMappingURL=continuation-command.d.ts.map