import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface ClipBaseProps { /** * 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 (color of the strokes) of the Spinner. */ foregroundColor?: string; /** * The size of the Spinner in pixels. */ size?: number; } export declare type ClipSpinnerProps = MergeElementProps<"div", ClipBaseProps>; declare type Component = { (props: ClipSpinnerProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const ClipSpinner: Component; export default ClipSpinner;