declare function withAbortSignal<T>(promiseFn: () => Promise<T>, signal?: AbortSignal): Promise<T>;

export { withAbortSignal };
