import * as React from "react"; export interface SectionLoadingIndicatorProps { /** Custom color for the loading indicator */ color?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } declare const SectionLoadingIndicator: ({ color, className, "data-cy": dataCy }: SectionLoadingIndicatorProps) => React.JSX.Element; export default SectionLoadingIndicator;