import { ColumnType } from './column-types'; export declare class Column { static of(param: (type: Type) => ColumnType): Column; readonly Name: string; constructor(name: string); toString(): string; }