export interface TransactionDetails {
    transactionRefNumber: string | null;
    paymentDateTime: Date | null;
    totalAmountDebited: string | null;
    receiver: string | null;
    payer: string | null;
}
export interface PaymentVerificationConfig {
    cbeAccountNumber: string;
    maxTransactionAgeHours?: number;
    rejectUnauthorized?: boolean;
}
//# sourceMappingURL=types.d.ts.map