declare function fetchJSON(url: string | URL | Request, options: RequestInit & {
    timeout?: number;
}): Promise<unknown>;

export { fetchJSON };
