import { type ColumnType } from "./RowFormatter.ts"; import { Table } from "./Table.ts"; export declare class ColumnSetTable extends Table { constructor(); protected _buildColumnSets(): ColumnType[][][]; protected _gridColumnsConfig(): object; protected _createGrid(opts: any, node: HTMLElement): any; protected _applyColumnsToGrid(): void; dblclickColResize(column: string, dgridColumn: any): void; } export interface ColumnSetTable { columnSets(): string[][]; columnSets(_: string[][]): this; autoColumnSet(): boolean; autoColumnSet(_: boolean): this; }