import * as React from "react"; import { IconSize } from "../../shared/types/iconSize"; export interface InlineLoadingIndicatorProps { /** * The fill color of the spinner. */ color?: string; /** Which icon size to use for the width and height of the icon. */ size?: IconSize; /** Human-readable selector used for writing tests. */ "data-cy"?: string; } declare const InlineLoadingIndicator: ({ size, "data-cy": dataCy, color }: { size?: "xs" | undefined; "data-cy"?: string | undefined; color?: string | undefined; }) => React.JSX.Element; export default InlineLoadingIndicator;