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