import * as React from 'react';
export interface NotificationProgressProps {
    className?: string;
    style?: React.CSSProperties;
    percent: number;
}
declare const Progress: React.FC<NotificationProgressProps>;
export default Progress;
