import { type HandoffRequest, type HandoffSecretPayload } from '../../shared/secret-handoff.js'; export declare class SecretHandoffPendingStore { private readonly agentId; private readonly animaHome; private readonly directory; constructor(agentId: string, animaHome?: string); create(request: HandoffRequest, privateKey: string): Promise; consume(requestId: string, boxInput: string, operation: (payload: HandoffSecretPayload) => Promise): Promise; resetRejectedWrite(requestId: string): Promise; cancel(requestId: string): Promise; cleanupExpired(now?: Date): Promise; pendingPath(requestId: string): string; private path; private ensureDirectory; } //# sourceMappingURL=secret-handoff-store.d.ts.map