interface WalletStatementType { [key: string]: Array; } export interface WalletStatementMapping { date: string mode: string amount: number canceledFlag: any transactionStatus?: string | null transactionRefno?: string | null tripId?: number | null type: string comment: any status: string isFailed: boolean isPending: boolean description: string title: string sourceName?: string | null destinationName?: string | null walletBalance?: number | null displayErrorMessage?: string | null onClickDescription?: VoidFunction }