/** * @typedef {object} PaginationAttributes * @prop {boolean} [rounded] * @prop {import('../attributes.mjs').Size} [size] * @prop {boolean} [centered] */ /** * A responsive, usable, and flexible pagination * * https://bulma.io/documentation/components/pagination/ * * @type {m.Component} */ export const Main: m.Component; /** * @type {m.Component} */ export const Previous: m.Component; /** * @type {m.Component} */ export const Next: m.Component; /** * @type {m.Component} */ export const PageList: m.Component; /** * @type {m.Component} */ export const Item: m.Component; /** * @type {m.Component} */ export const Elipsis: m.Component; export type PaginationAttributes = { rounded?: boolean; size?: import("../attributes.mjs").Size; centered?: boolean; }; import m from 'mithril';