import type { MandatoryProps } from './utils';
export type TransactionData = MandatoryProps & {
    currency: string;
    itemCount: number;
    orderId: string;
    paymentMethod: string;
    price: number;
    type: 'enrollment' | 'purchase';
    couponCode?: string;
    tax?: number;
};
