import { ColumnOptions } from "typeorm";
export type TextColumnType = "text" | "longtext" | "shorttext" | "tinytext";
export declare function TextColumn(type?: TextColumnType, options?: ColumnOptions): (object: object, propertyName: string) => void;
