/** * Deletes the database based on the provided string. * * @param databaseName - The database name you want to delete * * @returns An Promise. * @throws {Error} If the database does not exist or is blocked by open connections. */ export declare function deleteDatabase(databaseName: string): Promise;