import type { CommandStore } from "./command-store.js"; export declare function beginDeliveryCommand(store: CommandStore, params: unknown, input: { key: string; client: string; operation: string; request: unknown; }): { id: string; state: import("./job-record.js").JobState; params: unknown; result?: unknown; error?: string; errorCode?: string; errorStatus?: number; errorRetryable?: boolean; errorRequiredActions?: string[]; errorContext?: Record; createdAt: string; runId?: string; taskId?: string; runDir?: string; startedAt?: string; finishedAt?: string; reused: boolean; }; export declare function completeDeliveryCommand(store: CommandStore | undefined, id: string, result: unknown): void; export declare function failDeliveryCommand(store: CommandStore | undefined, id: string, error: unknown): void; //# sourceMappingURL=delivery-command.d.ts.map