import { BasePropsType } from 'components/common/BasePropsType';
import { FC } from 'react';
import './style/index.css';
interface ActivityIndicatorProps extends BasePropsType {
    visible?: boolean;
    toast?: boolean;
    size?: 'large' | 'small';
    text?: string;
    panelColor?: string;
}
declare const ActivityIndicator: FC<ActivityIndicatorProps>;
export default ActivityIndicator;
