import { AnalyticsDimensionMapping } from "./AnalyticsDimensionMappings";
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
import { BusinessProfileProperty } from "./../BusinessProfile";
export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty {
    enabled: boolean;
    idSite: number;
    mappings: AnalyticsDimensionMapping[];
    shared: boolean;
    connectedBusinessProfileId?: GuidValue;
    constructor();
    static checkIfAnalyticsSwitchToDisabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
    static checkIfAnalyticsSwitchToEnabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean;
}
