import XNode from "@web-atoms/core/dist/core/XNode"; import type { IAnchorPopover } from "./elements/AtomPopover"; export type PopupFactory = (data: any) => XNode; export interface IPopupButton extends IAnchorPopover { icon?: string; text?: string; label?: string; popup?: PopupFactory; closeOnClick?: boolean; [k: string]: any; } export default function InlinePopupButton({ icon, text, label, closeOnClick, popup, ...a }: IPopupButton, ...nodes: XNode[]): any; //# sourceMappingURL=InlinePopupButton.d.ts.map