import { default as React } from 'react'; import { StatusIndicatorStateName, StatusIndicatorVariant } from '../../.deps/ui/core-web/src'; /** The geometric shape drawn per intent. */ export type StatusIndicatorShapeKind = 'circle' | 'diamond' | 'hexagon'; export declare function shapeForState(state: StatusIndicatorStateName): StatusIndicatorShapeKind; export declare const SHAPE_GEOMETRY: Record>;