import { VariantProps } from 'class-variance-authority'; import * as React from "react"; declare const dotVariants: (props?: ({ varient?: "loading" | "default" | "secondary" | "unloading" | "interim" | null | undefined; text?: "present" | "nill" | null | undefined; showAs?: "indicator" | null | undefined; size?: "sm" | "lg" | "md" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface DotProps extends React.HTMLAttributes, VariantProps { } declare const Dot: React.ForwardRefExoticComponent>; export { Dot, dotVariants };