export const LEGACY_AGREEMENT_SLUG_MAP: Record<
    string,
    {
        agreementId: number;
        title: string;
    }
> = {
    'legacy-monthly': {
        agreementId: 1,
        title: 'Legacy Monthly',
    },
    'power-of-attorney': {
        agreementId: 2,
        title: 'Power of attorney',
    },
    'hippa-poa': {
        agreementId: 3,
        title: 'HIPPA POA',
    },
    'adverse-information-list': {
        agreementId: 4,
        title: 'Adverse information List',
    },
};
