import type { BadgeProps } from "@twilio-paste/badge"; import type { ButtonProps } from "@twilio-paste/button"; import type { MenuPrimitiveButtonProps } from "@twilio-paste/menu-primitive"; import * as React from "react"; export type MenuBadgeProps = MenuPrimitiveButtonProps & Omit & Pick & { /** * Accessible label for the button that opens the menu * * @type {string} * @memberof MenuBadgeProps */ i18nButtonLabel: string; }; export type MenuBadgeContentProps = Omit; export declare const MenuBadgeContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const MenuBadge: React.ForwardRefExoticComponent & React.RefAttributes>; export { MenuBadge }; //# sourceMappingURL=MenuBadge.d.ts.map