export interface DatabaseAuthVerifyOptions { readCredential(): string; fetcher?: typeof fetch; } /** Proves root is not empty and the sealed break-glass credential is active. */ export declare function verifyDatabaseAuthentication(rawEndpoint: string, options: DatabaseAuthVerifyOptions): Promise;