import type { Auth } from "../types"; import type { Params } from "../params"; export declare class APIKeyAuth implements Auth { private apiKey; constructor(apiKey: string | (() => string) | (() => Promise)); sign(method: "GET" | "POST", url: string, params: Params): Promise; getAPIKey(): Promise; }