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