import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; export declare class DuckDBUBigIntType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBUBigIntType; static create(alias?: string): DuckDBUBigIntType; static readonly Max: bigint; static readonly Min: bigint; get max(): bigint; get min(): bigint; } export declare const UBIGINT: DuckDBUBigIntType;