/** * @typedef {object} TabsAttributes * @prop {'centered'|'right'|'left'} [align] * @prop {import('../attributes.mjs').Size} [size] * @prop {'boxed'|'toggle'|'toggle-rounded'} [theme] * @prop {boolean} [fullwidth] */ /** * Simple responsive horizontal navigation tabs, with different styles * * https://bulma.io/documentation/components/tabs/ * * @type {m.Component} */ export const Main: m.Component; /** * An entry in a list of tabs * * https://bulma.io/documentation/components/tabs/ * * @type {m.Componentvoid}>} */ export const Entry: m.Component void; }>; export type TabsAttributes = { align?: "centered" | "right" | "left"; size?: import("../attributes.mjs").Size; theme?: "boxed" | "toggle" | "toggle-rounded"; fullwidth?: boolean; }; import m from 'mithril';