import { BearerAuth, CookieAuth } from "./Auth"; export declare abstract class AtmoApiBase { protected baseAtmoUrl: string; protected auth: CookieAuth | BearerAuth; constructor(baseAtmoUrl: string, auth?: CookieAuth | BearerAuth); protected injectAuth(options: RequestInit): RequestInit; }