export { promiseWithResolvers, type PromiseWithResolvers }; declare const promiseWithResolvers: () => PromiseWithResolvers; type PromiseWithResolvers = { promise: Promise; resolve(value: T): void; reject(reason?: unknown): void; };