import type { Address } from './Address.js';
import type { FeePolicy } from './FeePolicy.js';
import type { TokenAmount } from './TokenAmount.js';
export type ExecutedProtocolFee = {
    policy?: FeePolicy;
    amount?: TokenAmount;
    token?: Address;
};
