export declare class Defer { promise: Promise; private _resolve; private _reject; constructor(); resolve(data: any): void; reject(data: any): void; }