export interface TableCell { content: string; colspan?: number; rowspan?: number; isHeader?: boolean; } export interface TableRow { cells: TableCell[]; } export declare class SpwTable { el: HTMLSpwTableElement; /** Propriété pour l'aria-label, à des fins d'accessibilité */ accAriaLabel?: string; /** Si le header du tableau doit être sticky ou non */ isSticky?: boolean; /** Si défini, apparition d'une scrollbar verticale et max-height */ maxHeight?: string; /** Si défini, apparition d'une scrollbar horizontale et max-width */ minWidth?: string; private formatSize; private get elementClass(); render(): any; }