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