export interface StandaloneDatabaseActivationRequest { key: string; component: string; storagePath: string; credential: string; } export interface StandaloneDatabaseActivationEvidence { unit: string; endpoint: 'http://127.0.0.1:8529'; database: string; credentialSealed: true; health: 'authenticated'; } export interface DatabaseSupervisorHost { exists(path: string): boolean; mkdir(path: string, mode: number): void; write(path: string, value: string, mode: number): void; random(bytes: number): string; exec(argv: readonly string[], stdin?: string): Promise; } /** Activates one isolated, loopback-only database beside containers on an exclusive VM. */ export declare function activateStandaloneDatabase(request: StandaloneDatabaseActivationRequest, host?: DatabaseSupervisorHost): Promise;