import { ServerTransactionType } from '../../../../types/serverTransactions.types'; export declare function getTransactionStatus(transaction: ServerTransactionType): { failed: boolean; success: boolean; invalid: boolean; pending: boolean | undefined; };