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