import { Command } from '@oclif/core';
export default class AccountBalance extends Command {
    static args: {
        address: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
    };
    static description: string;
    static examples: string[];
    static flags: {};
    run(): Promise<void>;
}
