export interface TransactionQuery {
    filterOptions: FilterOptions;
}
interface FilterOptions {
    transactionId: string;
}
export {};
