import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; export declare class DuckDBVarCharType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBVarCharType; static create(alias?: string): DuckDBVarCharType; } export declare const VARCHAR: DuckDBVarCharType;