/** * Bubble Shape Props * @internal */ export interface BubbleShapeProps { active?: boolean; color: string; } export declare const BubbleShape: { ({ active, color }: BubbleShapeProps): import("react/jsx-runtime").JSX.Element; displayName: string; };