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