import { r as HsqldbTable } from "../script-DsGGIzGU.js"; //#region src/firebird/backup.d.ts declare class FirebirdBackupFormatError extends Error { constructor(message: string); } interface FirebirdBackupSummary { readonly backupFormatVersion: number; readonly transportable: boolean; readonly compressed: boolean; readonly pageSizeBytes: number | undefined; } declare const SUPPORTED_BACKUP_FORMAT_VERSION = 10; interface ReadFirebirdBackupResult { readonly summary: FirebirdBackupSummary; readonly tables: readonly HsqldbTable[]; } declare function readFirebirdBackup(bytes: Uint8Array): ReadFirebirdBackupResult; //#endregion export { FirebirdBackupFormatError, FirebirdBackupSummary, ReadFirebirdBackupResult, SUPPORTED_BACKUP_FORMAT_VERSION, readFirebirdBackup };