type AccountStatementTransaction = {
    id: number;
    server_date: string;
    type: number;
    description: string;
    currency: string;
    transaction_currency: string;
    fx_rate: number;
    amount: number;
    transaction_amount: number;
    is_credit: number;
    parent_transaction_id: number;
    mc_rate: number;
};
export type { AccountStatementTransaction };
