import * as React from "react"; export interface BusyIndicatorProps { /** Size of the spinner in pixels */ size?: "sm" | "md" | "lg" | "xl"; /** Optional message to display below the spinner */ message?: string; /** Array of messages to cycle through */ messages?: string[]; /** Interval in milliseconds for cycling messages */ messageInterval?: number; /** Text color for the message */ textColor?: string; /** Additional CSS classes */ className?: string; /** Show background container */ showContainer?: boolean; /** Container background color/gradient */ containerBg?: string; /** Show animated background effects */ showBackgroundEffects?: boolean; } export declare const BusyIndicator: React.ForwardRefExoticComponent>; //# sourceMappingURL=BusyIndicator.d.ts.map