import { ContentCellValue } from "document-schema.js"; //#region src/hsqldb/rowformat.d.ts declare class HsqldbRowFormatError extends Error { constructor(message: string); } declare function resolveHsqldbTypeCode(declaredType: string): number; declare class HsqldbDataCursor { private readonly bytes; private readonly view; position: number; constructor(bytes: Uint8Array, offset?: number); readUint8(): number; readInt16(): number; readInt32(): number; readBigInt64(): bigint; readFloat64(): number; readBytes(length: number): Uint8Array; } declare function readModifiedUtf8(bytes: Uint8Array): string; interface HsqldbDecodeOptions { readonly timeZone?: string; } declare function readHsqldbColumnValue(cursor: HsqldbDataCursor, typeCode: number, options?: HsqldbDecodeOptions): ContentCellValue; //#endregion export { readModifiedUtf8 as a, readHsqldbColumnValue as i, HsqldbDecodeOptions as n, resolveHsqldbTypeCode as o, HsqldbRowFormatError as r, HsqldbDataCursor as t };