import React from 'react'; import { type IconProps } from './core'; declare const BASE_MAP: { '34': React.JSX.Element; '100': React.JSX.Element; }; interface IconBubbleProps extends IconProps { base?: keyof typeof BASE_MAP; } /** * NOTE: This has irregular base size options * * 100 is for large display areas and 34 is for smaller display areas * This does not just size the SVG, the 34 base has a simpler SVG display */ export declare function IconBubble({ base, ...props }: IconBubbleProps): React.JSX.Element; export {};