import '@material/web/icon/icon.js'; import '@material/web/chips/assist-chip.js'; import './ox-page-action-overlay-template.js'; import { LitElement, nothing, PropertyValues } from 'lit'; export declare class PageActionContextBar extends LitElement { static get styles(): import("lit").CSSResult[]; private _route; actions: { title: string; action: () => void; icon: string; type: string; select: string[]; href?: string; emphasis?: boolean; }[]; private overflown; container?: HTMLDivElement; private overflownUpdaterThrottle; private resizeCallback; get overflownUpdater(): any; connectedCallback(): void; disconnectedCallback(): void; render(): import("lit-html").TemplateResult<1> | typeof nothing; renderActions(): import("lit-html").TemplateResult<1>; updated(changed: PropertyValues): Promise; protected willUpdate(): void; showMore(): void; }