import React, { ReactNode } from "react"; interface StyledCircleProps { color?: string; size?: number; } /** Default style for Circle */ export declare const StyledCircle: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLSpanElement>, StyledCircleProps>> & string; export interface CircleProps { children: ReactNode; color?: string; size?: number; ariaLabel?: string; } /** Circle with user-defined component inside */ export declare const Circle: React.FunctionComponent; export interface GroupCircleProps { /** React component to put inside the circle */ children: ReactNode; /** Group to use for this circle */ group: string; /** Mapping of group names to color */ groupColorMap: Record; } /** * Circle with user-defined group colors */ export declare const GroupCircle: React.FunctionComponent; export {};