export interface AnalyticsDetails { date?: string; count: number; hour?: number; count_percentage: string; amount: number; trx_amount?: number; amount_percentage: string; min: number; max: number; median: number; average: { general: number; weighted: { below_500_msec: string; below_1_second: string; below_1_5_second: string; below_2_second: string; below_2_5_second: string; below_3_second: string; below_3_5_second: string; below_4_second: string; above_4_second: string; }; }; } export declare enum ChargeBreakDownType { PaymentMethod = "PAYMENT_METHOD", PaymentCurrency = "PAYMENT_CURRENCY", PaymentScheme = "PAYMENT_SCHEME", PaymentType = "PAYMENT_TYPE", PaymentLocation = "PAYMENT_LOCATION", PaymentIssuer = "PAYMENT_ISSUER", PaymentAcquirer = "PAYMENT_ACQUIRER", PaymentGateway = "PAYMENT_GATEWAY" }