import m from 'mithril'; import { IAttrs } from '../../_shared'; export interface ITableAttrs extends IAttrs { /** Toggles bordered styling */ bordered?: boolean; /** Adds interactive hover/active styling for each row */ interactive?: boolean; /** Toggles striped styling */ striped?: boolean; [htmlAttrs: string]: any; } export declare class Table implements m.Component { view({ attrs, children }: m.Vnode): m.Vnode; }