import { AvatarProps } from "../interfaces.js"; interface LoadingDotsProps { color?: string; style?: AvatarProps.Style; width?: number; } export default function LoadingDots({ color, width, style }: LoadingDotsProps): import("react/jsx-runtime").JSX.Element; export {};