export type FakePromiseResult = { then(callback: (arg: Awaited) => R): R; }; export declare function fakePromise>(value: T): FakePromiseResult;