/** * @typedef {object} PanelAttributes * @prop {import('../attributes.mjs').Color} [color] */ /** * A composable panel, for compact controls * * https://bulma.io/documentation/components/panel/ * * @type {m.Component} */ export const Main: m.Component; /** * @type {m.Component} */ export const Header: m.Component; /** * @type {m.Component} */ export const Block: m.Component; /** * @type {m.Component} */ export const TabGroup: m.Component; /** * @type {m.Component} */ export const Tab: m.Component; export type PanelAttributes = { color?: import("../attributes.mjs").Color; }; import m from 'mithril';