import type { DataTestId } from '../../core/types/data-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for `AiLoadingIndicator.Icon` slot. * @public */ export interface AiLoadingIndicatorIconProps extends StylingProps, DataTestId, WithChildren { } /** * Allows consumers to specify an icon displayed in the `AiLoadingIndicator` component. * Defaults to the `AiIcon` if no children are provided. * @public */ export declare const AiLoadingIndicatorIcon: (props: AiLoadingIndicatorIconProps & import("react").RefAttributes) => import("react").ReactElement | null;