export declare const prescriptionDurationTranslations: {
    fr: {
        durationUnits: {
            day: string;
            week: string;
        };
        periodicityUnits: {
            none: string;
            week: string;
            twoWeeks: string;
            threeWeeks: string;
            numberOfDays: string;
        };
    };
    en: {
        durationUnits: {
            day: string;
            week: string;
        };
        periodicityUnits: {
            none: string;
            week: string;
            twoWeeks: string;
            threeWeeks: string;
            numberOfDays: string;
        };
    };
    nl: {
        durationUnits: {
            day: string;
            week: string;
        };
        periodicityUnits: {
            none: string;
            week: string;
            twoWeeks: string;
            threeWeeks: string;
            numberOfDays: string;
        };
    };
    de: {
        durationUnits: {
            day: string;
            week: string;
        };
        periodicityUnits: {
            none: string;
            week: string;
            twoWeeks: string;
            threeWeeks: string;
            numberOfDays: string;
        };
    };
};
