import React from 'react';
import type { BoxProps } from '../Box/Box';
interface SpinnerIconProps {
    size?: string | number;
    backgroundColor?: BoxProps['color'];
    indicatorColor?: BoxProps['color'];
}
export declare const SpinnerIcon: ({ size, backgroundColor: _, indicatorColor, }: SpinnerIconProps) => React.JSX.Element;
export {};
