import { Column } from "../Column"; export declare class TextColumn extends Column { /** * Max chars to show */ _maxChars?: number; /** * Max words to show */ _maxWords?: number; /** * Set max chars to show */ maxChars(maxChars: number): this; /** * Set max words to show */ maxWords(maxWords: number): this; } export declare function textColumn(key?: string, heading?: string): TextColumn; //# sourceMappingURL=textColumn.d.ts.map