import { RecipientAndAmount } from './types';
export type PaymentEvent = {
    sender: string;
    tokenAddress: string;
    transferAmount: bigint;
    splitData: RecipientAndAmount[];
    transactionDbId: string;
};
export declare enum EventName {
    PAYMENT = "Payment",
    TRANSFER = "Transfer",
    SWAP = "Swap"
}
