import type { API, ClientOptions } from './interfaces';
export declare class CoronaWarnApp {
    private static readonly BASE_URL;
    readonly api: API;
    private readonly apiClient;
    constructor(options?: ClientOptions);
    /**
     * Set a new API URL.
     * @param newUrl The new API URL
     */
    setApiUrl(newUrl: string): void;
}
