import { InferComponentProps } from './types.js'; export declare const Dot: import("react").ComponentType, HTMLDivElement>>; export declare const DotWrapper: import("react").ComponentType, HTMLDivElement>>; export type LoadingDotColorKey = 'purple' | 'white'; export declare const Wrapper: import("react").ComponentType, HTMLDivElement>>; type LoadingDotsProps = InferComponentProps & { /** @deprecated - use className to defined the text color instead */ dotColor?: LoadingDotColorKey; }; /** ``` ``` To change the color of the LoadingDots ``` ``` The dots will take on the color assigned via the `variation` property. */ export declare const LoadingDots: ({ dotColor, ...props }: LoadingDotsProps) => import("react/jsx-runtime").JSX.Element; export {};