export declare const BUSINESS_UNIT: {
    readonly TRAVEL_ASSISTANCE: "travel-assistance";
    readonly CAR_INSURANCE: "car-insurance";
    readonly MANDATORY_CAR_INSURANCE: "mandatory-car-insurance";
    readonly RCI_INSURANCE: "rci-insurance";
    readonly LIFE_INSURANCE: "life-insurance";
    readonly HEALTH_INSURANCE: "health-insurance";
    readonly MANDATORY_COVID_19_INSURANCE: "mandatory-covid-19-insurance";
    readonly MORTGAGE_CREDIT: "mortgage-credit";
    readonly CAR_CREDIT: "car-credit";
    readonly CONSUMER_CREDIT: "consumer-credit";
    readonly CREDIT_CARD: "credit-card";
    readonly CHECKING_ACCOUNT: "checking-account";
    readonly PERSONAL_CREDIT: "personal-credit";
    readonly SAVINGS_ACCOUNT: "savings-account";
    readonly CROSS: "cross";
};
export declare const SHORT_BUSINESS_UNIT: {
    "travel-assistance": string;
    "car-insurance": string;
    "mandatory-car-insurance": string;
    "life-insurance": string;
};
export type BusinessUnit = (typeof BUSINESS_UNIT)[keyof typeof BUSINESS_UNIT];
export type ShortBusinessUnit = (typeof SHORT_BUSINESS_UNIT)[keyof typeof SHORT_BUSINESS_UNIT];
