import { ICellCallback } from "./types"; export interface IItemTableOptions { element: HTMLElement; cellCallback: ICellCallback; } export declare class ItemTable { private table; constructor({ cellCallback, element }: IItemTableOptions); start(): void; set cols(cols: string[]); set rows(rows: string[]); removeListener(): void; addListener(): void; dispose(): void; }