import { FirebirdBackupReader } from "./reader.js"; import { FirebirdField, FirebirdRelation } from "./schema.js"; import { ContentCellValue } from "document-schema.js"; //#region src/firebird/data.d.ts declare class FirebirdDataParseError extends Error { constructor(message: string); } declare class FirebirdCompositeRecordUnsupportedError extends Error { readonly recordType: number; constructor(recordType: number, context: string); } declare function decodeRowValues(fields: readonly FirebirdField[], payload: Uint8Array): ContentCellValue[]; declare function readRelationData(reader: FirebirdBackupReader, schema: ReadonlyMap, compressed: boolean): { relationName: string; rows: ContentCellValue[][]; }; //#endregion export { FirebirdCompositeRecordUnsupportedError, FirebirdDataParseError, decodeRowValues, readRelationData };