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