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