import { FC } from 'react';

type LoadingTypes = {
    /** Specifies the size of the loading component.*/
    size?: "button" | "xs" | "sm" | "normal" | "lg" | "xl";
    /** Determines the design of the loading animation.*/
    design?: "spinner" | "dots-bounce" | "dots-pulse" | "pulse" | "spinner-dots" | "squircle" | "square" | "progress" | "orbit";
    /** Specifies the color of the loading component. By default it will inherit the value of --primary global CSS variable*/
    color?: string;
    classNames?: {
        container?: string;
        track?: string;
        car?: string;
    };
    themeMode?: "dark" | "light";
};
declare const Loading: FC<LoadingTypes>;

export { Loading };
