import type { FlowFee, FlowNetwork } from "../types"; export type ProtocolFees = { buyerFee: FlowFee; sellerFee: FlowFee; }; /** * returns fees object with value format in basis points 10000 * @param network */ export declare function getProtocolFee(network: FlowNetwork): ProtocolFees; export declare namespace getProtocolFee { var percents: (network: FlowNetwork) => ProtocolFees; }