import type { BigUint } from './BigUint';
export type ExecutedAmounts = {
    sell: BigUint;
    buy: BigUint;
};
