import React from 'react';
import { type BoxProps } from '../Box/Box';
interface SpinnerIconWithBackgroundProps {
    size?: BoxProps['width'];
    indicatorColor?: BoxProps['borderColor'];
    backgroundColor?: BoxProps['borderColor'];
}
export declare const SpinnerIconWithBackground: ({ size, indicatorColor, backgroundColor, }: SpinnerIconWithBackgroundProps) => React.JSX.Element;
export {};
