import AmbientConfig from "../config/AmbientConfig";
import { SettingsConfigType, UserConfigMap } from "../config/SettingsConfig";
import { BaseAPI } from "./BaseAPI";
export declare class AmbientPACEAPI extends BaseAPI {
    private _config;
    private _baseUrl;
    constructor(_config: AmbientConfig);
    private getURL;
    getNoteParams(): Promise<any>;
    getSettingsConfigMaster(_configTypeId: SettingsConfigType): Promise<any>;
    getUserConfigSettings(_configTypeId: SettingsConfigType): Promise<any>;
    updateUserConfig(_updateSettingRequest: UserConfigMap[]): Promise<any>;
    getUserPreferences(): Promise<any>;
    updateUserPreference(_automaticallyGenerateTranscript: boolean, _preferredTranscriptionLanguage: string, _highlightMedicalTerms: boolean, _displayPatientContext: boolean): Promise<any>;
}
