export interface DeployRecord { deployId?: string; apiUrl?: string; url?: string; claimToken?: string; bundleHash?: string; bundlePath?: string; clientPath?: string; port?: number; timestamp?: string; publicInspect?: boolean; claimedAt?: string; terminatesAt?: string; expiresAt?: string; [key: string]: unknown; } export declare function deployRecordPath(cwd: string): string; export declare function deriveControlPlaneFromDeployUrl(deployUrl: string): string | null; export interface HealResult { healed: boolean; before?: string; after?: string; } export declare function healDeployRecord(record: DeployRecord): HealResult; export declare function readDeployRecord(cwd: string): DeployRecord | null; //# sourceMappingURL=deploy-record.d.ts.map