export declare class FetchQueue { isReady: boolean; isDestroyed: boolean; queue: FetchEvent[]; constructor(); push(fetchEvent: FetchEvent): void; ready(): void; destroy(): void; }