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