import { type HTMLAttributes, type Ref } from 'react';
import { type CssLength } from '../../../utils/css';
export type RadarProps = Omit, 'children'> & {
/** Accessible label for the visual. Omit it when the radar is decorative. */
ariaLabel?: string;
background?: string;
color?: string;
disabled?: boolean;
gridSize?: CssLength;
respectReducedMotion?: boolean;
size?: CssLength;
sweepDuration?: number;
trailCells?: number;
ref?: Ref;
};
export declare const Radar: ({ ariaLabel, background, className, color, disabled, gridSize, respectReducedMotion, size, style, sweepDuration, trailCells, ref, ...props }: RadarProps) => import("react/jsx-runtime").JSX.Element;