interface DprAppLocals {
    nestedBaseUrl?: string | undefined;
    bookmarkActionEndpoint: string;
    subscribePath: string;
    downloadActionEndpoint: string;
    productCollectionEndpoint: string;
    bookmarkListPath: string;
    requestedListPath: string;
    recentlyViewedListPath: string;
    reportsCatalogue: string;
    userReportsList: string;
    dprHomepage: string;
    requestReportPath: string;
    viewReportPath: string;
    /** internal: stores the unmodified raw paths */
    original?: Omit<DprAppLocals, 'original' | 'nestedBaseUrl'>;
}

export type { DprAppLocals };
