import { Token } from "typedi"; export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; /** Never use {@link fetch} directly. Use it through the {@link Container} via this {@link Token}. */ export declare const fetchToken: Token;