/** * functions and constants which helps to build * nextjs or react router dom navigation operations * for an entity. */ export declare const PaymentRequestNavigationTools: { edit(uniqueId: string, locale?: string): string; create(locale?: string): string; single(uniqueId: string, locale?: string): string; query(params?: any, locale?: string): string; /** * Use R series while building router in CRA or nextjs, or react navigation for react Native * Might be useful in Angular as well. **/ Redit: string; Rcreate: string; Rsingle: string; Rquery: string; };