import { type CSSProperties, type HTMLAttributes } from 'react';
import { type CssLength, type CssTime } from '../../../utils/css';
type BreathingBallProps = Omit, 'children'> & {
label?: string;
size?: CssLength;
duration?: CssTime;
paused?: boolean;
primaryColor?: CSSProperties['color'];
secondaryColor?: CSSProperties['color'];
glowColor?: CSSProperties['color'];
};
declare const BreathingBall: ({ className, duration, glowColor, label, paused, primaryColor, secondaryColor, size, style, ...props }: BreathingBallProps) => import("react/jsx-runtime").JSX.Element;
export { BreathingBall };
export type { BreathingBallProps };