import XNode from "@web-atoms/core/dist/core/XNode"; import "./styles/popup-button.global.css"; import InlinePopupButton, { IPopupButton } from "./InlinePopupButton"; export interface IMenuItem { label?: string; icon?: string; eventClick?: any; href?: string; target?: string; [key: string]: any; } export declare function MenuItem({ label, icon, eventClick, href, target, ...others }: IMenuItem): any; export default InlinePopupButton; export declare function PopupActionButton(a: IPopupButton, ...nodes: XNode[]): any; //# sourceMappingURL=PopupButton.d.ts.map