export type PromiseWithResolvers = { resolve: (arg: TPromise) => void; reject: (error: Error) => void; promise: Promise; }; /** * @description Application level polyfill. */ export declare const promiseWithResolvers: () => PromiseWithResolvers; //# sourceMappingURL=promiseWithResolvers.d.ts.map