import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface MoonBaseProps { /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * Sets the backgroundColor of the Spinner. */ backgroundColor?: string; /** * Sets the foregroundColor of the Spinner. */ foregroundColor?: string; /** * The size of the Spinner in pixels. */ size?: number; } export declare type MoonSpinnerProps = MergeElementProps<"div", MoonBaseProps>; declare type Component = { (props: MoonSpinnerProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const MoonSpinner: Component; export default MoonSpinner;