import { FC } from 'react'; import { IAlertProps } from '../alert'; export declare type StatusBarType = 'info' | 'waiting' | 'success' | 'error'; export interface IStatusBarProps extends Omit { type?: StatusBarType; } export declare const StatusBar: FC; export default StatusBar;