//#region src/utils/withResolvers.d.ts /** @internal */ type PromiseWithResolvers = { promise: Promise; resolve: (value: type | PromiseLike) => void; reject: (reason?: unknown) => void; }; /** @internal */ declare function withResolvers(): PromiseWithResolvers; //#endregion export { PromiseWithResolvers, withResolvers }; //# sourceMappingURL=withResolvers.d.ts.map