import { BaseSettings, MindeeApiConstructorProps } from "../../http/baseSettings.js";
/**
 * Settings for the V2 API.
 */
export declare class ApiSettings extends BaseSettings {
    baseHeaders: Record<string, string>;
    constructor({ apiKey, dispatcher, }: MindeeApiConstructorProps);
    protected apiKeyFromEnv(): string;
    protected hostnameFromEnv(): string;
}
