import { FC, ReactNode, SVGAttributes } from 'react';
interface SteamSpinnerProps {
    children?: ReactNode;
    background?: 'transparent';
}
/** @component React Components */
export declare const SteamSpinner: FC<SVGAttributes<SVGElement> & SteamSpinnerProps>;
export {};
