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