import { type HTMLAttributes } from 'react';
import * as React from 'react';
/**
 * @public
 */
export interface LoadingPlaceholderProps extends HTMLAttributes<HTMLDivElement> {
    text: React.ReactNode;
}
/**
 * Loading indicator with a text. Used to alert a user to wait for an activity to complete.
 *
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/information-loadingplaceholder--docs
 * @public
 */
export declare const LoadingPlaceholder: ({ text, className, ...rest }: LoadingPlaceholderProps) => import("react/jsx-runtime").JSX.Element;
