import { FC } from 'react';
import { DivProps, SvgProps } from "../../types";
import './style.css';
export interface BrandLoadingProps {
    size?: number;
    text: FC<SvgProps & DivProps & {
        size?: number;
    }>;
}
declare const BrandLoading: FC<BrandLoadingProps & SvgProps & DivProps>;
export default BrandLoading;
