export declare type ApplicationCacheStatus = 0 | 1 | 2 | 3 | 4 | 5;
export interface IApplicationCacheStatusEnum {
    readonly UNCACHED: 0;
    readonly IDLE: 1;
    readonly CHECKING: 2;
    readonly DOWNLOADING: 3;
    readonly UPDATE_READY: 4;
    readonly OBSOLETE: 5;
}
declare const _default: IApplicationCacheStatusEnum;
export default _default;
