import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; export declare class DuckDBUSmallIntType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBUSmallIntType; static create(alias?: string): DuckDBUSmallIntType; static readonly Max: number; static readonly Min = 0; get max(): number; get min(): number; } export declare const USMALLINT: DuckDBUSmallIntType;