export interface IProperties {
    entryPointUrl: string;
    lang?: string;
    customStyles?: string;
    months?: {
        earliest: number;
        latest: number;
    };
    debug?: {
        fcm?: boolean;
        recognition?: boolean;
        mockPersonId?: number;
        mockServiceUrl?: string;
    };
}
