import * as React from 'react'; export type StatusDotStatus = 'running' | 'idle' | 'thinking' | 'stopped' | 'tripped'; export interface StatusDotProps extends React.HTMLAttributes { status: StatusDotStatus; size?: 'sm' | 'md' | 'lg'; pulse?: boolean; } declare function StatusDot({ status, size, pulse: _pulse, className, ...props }: StatusDotProps): import("react/jsx-runtime").JSX.Element; export { StatusDot };