import { type CliError } from "../../../_utils/cli-error.js"; import { type Result } from "../../../_utils/result.js"; declare const codexDesktopRecovery: { load(takeoverId: string): Promise>; save(record: { readonly takeoverId: string; readonly canonicalDigest: string; readonly destinationSessionId: string; }): Promise>; clear(takeoverId: string, expectedDestinationSessionId: string): Promise>; }; export { codexDesktopRecovery };