/** * @typedef {object} HeroAttributes * @prop {import('../attributes.mjs').Color} [color] * @prop {'small'|'medium'|'large'|'half-height'|'fullheight'|'fullheight-with-navbar'} [size] */ /** * An imposing hero banner to showcase something * * https://bulma.io/documentation/layout/hero/ * * @type {m.Component} */ export const Main: m.Component; /** * https://bulma.io/documentation/layout/hero/ * @type {m.Component} */ export const Body: m.Component; /** * https://bulma.io/documentation/layout/hero/ * @type {m.Component} */ export const Header: m.Component; /** * https://bulma.io/documentation/layout/hero/ * @type {m.Component} */ export const Footer: m.Component; export type HeroAttributes = { color?: import("../attributes.mjs").Color; size?: "small" | "medium" | "large" | "half-height" | "fullheight" | "fullheight-with-navbar"; }; import m from 'mithril';