import { Ref, RefAttributes } from "react"; import { IconDefinition } from "../../types/icon"; import { ForwardedRefComponent } from "../../types/components"; export interface LoadingIndicatorProps extends RefAttributes { className?: string; icon?: IconDefinition; } export declare type LoadingIndicatorRef = Ref; declare const LoadingIndicator: ForwardedRefComponent; export { LoadingIndicator };