export type PromiseWithResolvers = { resolve: (value?: any) => void; reject: (error: any) => void; promise: Promise; }; /** * Simulates the behavior of Promise.withResolvers * that is available in Node 22 * * FUTURE: Remove this polyfill once we target Node 22 */ export declare function Promise_withResolvers(): PromiseWithResolvers; //# sourceMappingURL=promise-with-resolvers.polyfill.d.ts.map