/** * Creates a simulated promise to mock asynchronous operations. * @template T - The type of the value the promise will resolve with. * @template E - The type of the error the promise will reject with. * @param {number} [duration=3000] - Delay in milliseconds. * @param {boolean} [success=true] - Whether to resolve or reject. * @param {T} [returnValue] - Value to resolve with. * @param {E} [errorValue='Dummy Reject'] - Value to reject with. */ export declare function dummyPromise(duration?: number, success?: boolean): Promise; export declare function dummyPromise(duration: number, success: true, returnValue: T): Promise; export declare function dummyPromise(duration: number, success: false, returnValue: T, errorValue: E): Promise; //# sourceMappingURL=dummyPromise.d.ts.map