import { AssetValue } from "@aztec/sdk"; import { BaseCommand } from "../base.js"; export default class GetFees extends BaseCommand { static description: string; static examples: string[]; static flags: { asset: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; logSdk: any; }; run(): Promise; logFees(action: string, asset: string, fees: AssetValue[]): Promise; }