import { INotification } from '../notification.type';
import { IProgress } from '../../progress/progress.type';
export declare type IProgressNotification = INotification<'progress', IProgress>;
export declare function createProgressNotification(progress: IProgress): IProgressNotification;
export declare function createBasicProgressNotification(loaded: number, total: number): IProgressNotification;
