/** * @typedef {object} TableColor * @prop {import('../attributes.mjs').Color} [color] */ /** * @type {m.Component} */ export const ScrollableWrapper: m.Component; /** * @type {m.Component} */ export const Main: m.Component; /** * @type {m.Component} */ export const Body: m.Component; /** * @type {m.Component} */ export const Head: m.Component; /** * @type {m.Component} */ export const Foot: m.Component; /** * @type {m.Component} */ export const Row: m.Component; /** * @type {m.Component} */ export const Cell: m.Component; /** * @type {m.Component} */ export const HeaderCell: m.Component; export type TableColor = { color?: import("../attributes.mjs").Color; }; import m from 'mithril';