export type LoadingIndicatorProps = {
    className?: string;
    /** String will be injected into class and later used to apply as a CSS mask-image to an element as data URL */
    type?: string;
    /** Text to be displayed under the loading indicator icon */
    text?: string;
    /** Tooltip to be displayed on hover */
    tooltip?: string;
};
export declare const LoadingIndicator: ({ className, type, text, tooltip, }: LoadingIndicatorProps) => import("react/jsx-runtime").JSX.Element;
