import { type VariantProps } from 'class-variance-authority';
export type AgentActiveStatus = 'active' | 'inactive' | 'draft';
declare const dotVariants: (props?: ({
    variant?: "active" | "inactive" | null | undefined;
    size?: "sm" | "md" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type DotVariants = VariantProps<typeof dotVariants>;
type AgentActiveDotProps = DotVariants & {
    className?: string;
};
declare const AgentActiveDot: ({ variant, size, className }: AgentActiveDotProps) => import("react/jsx-runtime").JSX.Element;
export default AgentActiveDot;
