import { CustomElement } from '../../Abstracts/CustomElement'; import { IPageMenuElementProps } from './IPageMenuElementProps'; declare const PageMenuElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Page Menu - A horizontal menu that typically contains navigation links and actions. * It is commonly used in top of landing pages. * * @element mosaik-pagemenu * * @slot - The content of the page menu. * @slot start - The start content of the page menu. * @slot end - The end content of the page menu. * * @example * ```html * * * * ``` * * @public */ export declare class PageMenuElement extends PageMenuElement_base implements IPageMenuElementProps { private _breakpoint; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `breakpoint` property. * * @public * @attr */ get breakpoint(): string; set breakpoint(value: string); } /** * @public */ export declare namespace PageMenuElement { type Props = IPageMenuElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-pagemenu': PageMenuElement; } } export {}; //# sourceMappingURL=PageMenuElement.d.ts.map