export default MenuButton; type MenuButton = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; } & { focus: () => void; }; /** * A button to open a `` widget. * @see https://www.w3.org/WAI/ARIA/apg/patterns/menu-button/ */ declare const MenuButton: import("svelte").Component, { focus: () => void; }, "">; type Props = { /** * The base element of {@link popupPosition}. * If omitted, this will be {@link buttonComponent}. */ popupPositionBaseElement?: HTMLElement | undefined; }; import type { ButtonProps } from '../../typedefs';