export declare function promiseWithResolvers(): {
    promise: Promise<void>;
    resolve: () => void;
    reject: (reason?: any) => void;
};
