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