import { Bot } from "./bot";
import { Auth } from "./auth";
import { CalendarV2 } from "./calendar-v2";
export declare class Recall {
    private apiKey;
    private v1Url;
    private v2Url;
    private region;
    bot: Bot;
    auth: Auth;
    calendar: CalendarV2;
    constructor({ apiKey, region }: {
        apiKey: string;
        region: string;
    });
}
