import { Context } from "../imports/Context"; export declare class ColumnDefinition { constructor(cx: Context, args: any[], ctorObj: Function, inNewExpr: boolean); getAttributes(): string; getDefaultValue(): string; getLabel(): string; getMaxLength(): number; getName(): string; getReferencingTable(): string; getScope(): string; getType(): string; getUsePrefix(): boolean; static newWithLabelAndName( columnLabel: any, columnName: any ): ColumnDefinition; setAttributes(attributes: any): void; setDefaultValue(defaultValue: any): void; setLabel(label: any): void; setMaxLength(maxLength: any): void; setReferencingTable(referencingTable: any): void; setScope(scope: any): void; setType(type: any): void; setUsePrefix(usePrefix: boolean): void; }