import type { CountryCode, BusinessUnit } from '../constants';
export type MandatoryProps = {
    app_name: string;
    app_version: string;
    country_code: CountryCode;
    business_unit: BusinessUnit;
    user_type: string;
    user_id?: string;
};
