import { BareProps } from './types'; import { SemanticCOLORS, SemanticICONS } from 'semantic-ui-react/dist/commonjs/generic'; import React from 'react'; declare type Props = BareProps & { children: React.ReactNode; color?: SemanticCOLORS; icon?: SemanticICONS; label?: React.ReactNode; }; declare class Bubble extends React.PureComponent { render(): JSX.Element; } declare const _default: import("styled-components").StyledComponent; export default _default;