import { BigInteger } from "../u"; import { OpToken } from "./OpToken"; /** * Estimate the cost of running an arbitrary script in the VM. * This only supports running non APPCALL scripts. * Mainly used to calculate network fees. */ export declare function calculateExecutionFee(script: string | OpToken[], executionFeeFactor: number | BigInteger): BigInteger; //# sourceMappingURL=fees.d.ts.map