/** * Backend report filter types (used by reports APIs) * * Maps frontend report identifiers to the backend API filter types. * Acts as the source of truth for all report types across apps/services */ export declare const REPORT_FILTER_TYPES: { CHARGE: string; AUTHORIZE: string; REFUND: string; CHARGEBACKS: string; DESTINATIONS: string; REVERSED_DESTINATIONS: string; STATEMENT: string; STATEMENT_SUMMARY: string; INVOICE: string; PAYOUT: string; MERCHANT_PAYOUT: string; RETAILER_PAYOUT: string; AUTHENTICATION: string; }; /** * Maps report **source codes** (app or service) * to the corresponding **backend report filter types**. * * Used as a translation layer between UI report grouping * and backend report filtering. * * - Key: App code or service code * - Value: One or more backend filter types */ export declare const reportFilterTypesMap: { [x: string]: string[]; }; /** * Reports apps * * Defines apps shown in the reports app * */ export declare const REPORTS_APPS: { code: string; name: string; icon: string; services: { name: string; code: string; }[]; }[];