declare function withTimeout<T = any>(p: Promise<T>, ms: number, abortController?: AbortController): Promise<T>;

export { withTimeout };
