import Bottleneck from "bottleneck"; export interface StateInfo { ratelimiter: Bottleneck; userAgent: string; username?: string; api_key?: string; } export declare type Method = "get" | "GET" | "delete" | "DELETE" | "head" | "HEAD" | "options" | "OPTIONS" | "post" | "POST" | "put" | "PUT" | "patch" | "PATCH" | "purge" | "PURGE" | "link" | "LINK" | "unlink" | "UNLINK";