import type { Keys as IconName } from '@rocket.chat/icons'; import type { ButtonHTMLAttributes, ReactNode } from 'react'; type BubbleButtonProps = { onClick: () => void; label?: ReactNode; secondary?: boolean; icon?: IconName; } & Omit, 'onClick'>; export declare const BubbleButton: ({ secondary, label, onClick, icon, ...props }: BubbleButtonProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=BubbleButton.d.ts.map