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