/**
 * @description An interface passed externally from an outside environment into Base.
 *              These values are then distilled into the IAnalyticsOptions interface.
 *
 * @private
 */
export interface ITrackedPropertiesThroughAnalytics {
    sdkSemver: string;
    techVersion: string;
    sdkCode: string;
    product?: string;
    osType?: string;
    osVersion?: string;
    accessibility?: boolean;
    lazyload?: boolean;
    responsive?: boolean;
    placeholder?: boolean;
    feature?: string;
}
