/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement } from "lit"; interface Action { title: string; name: string; icon: string; } export declare class OverflowMenu extends LitElement { #private; actions: Action[]; disabled: boolean; static styles: import("lit").CSSResult; connectedCallback(): void; disconnectedCallback(): void; protected firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } export {}; //# sourceMappingURL=overflow-menu.d.ts.map