import { ServerTransactionType } from '../../../../types/serverTransactions.types'; interface IGetTransactionActionDirectionLabelParams { transaction: ServerTransactionType; currentUserAddress: string; transferType?: string; } export declare const getTransactionActionDirectionLabel: ({ transaction, transferType, currentUserAddress }: IGetTransactionActionDirectionLabelParams) => "Self" | "Received" | "Self Sent" | "Sent"; export {};