import fs from 'node:fs'; import { Command } from 'commander'; import { authorizedApiFetch, ensureAuthenticated } from '@agent-relay/cloud'; type ExitFn = (code: number) => never; export interface DlqDependencies { getProjectRoot: () => string; fs: Pick; fetch: typeof fetch; ensureAuthenticated: typeof ensureAuthenticated; authorizedApiFetch: typeof authorizedApiFetch; env: NodeJS.ProcessEnv; defaultCloudUrl: string; log: (...args: unknown[]) => void; error: (...args: unknown[]) => void; exit: ExitFn; now: () => number; } export declare function registerDlqCommands(program: Command, overrides?: Partial): void; export {}; //# sourceMappingURL=dlq.d.ts.map