import { JSX } from 'solid-js/jsx-runtime'; import { PopupProps } from './popup'; export type PopupButtonProps = JSX.ButtonHTMLAttributes & PopupProps & { children: JSX.Element; onPopupClose?: (buttonId: string) => void; }; export declare function PopupButton(props: PopupButtonProps): JSX.Element;