import { BareProps } from './types'; import { SemanticCOLORS, SemanticICONS } from 'semantic-ui-react/dist/commonjs/generic'; import React from 'react'; interface Props extends BareProps { children: React.ReactNode; color?: SemanticCOLORS; icon?: SemanticICONS; label?: React.ReactNode; } declare function Bubble({ color, children, className, icon, label }: Props): React.ReactElement; declare const _default: import("styled-components").StyledComponent; export default _default;