import { BaseCommand } from '../../../base-command.js';
export default class Peer extends BaseCommand {
    static description: string;
    static examples: string[];
    static flags: {
        domain: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        'peer-id': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
    };
    run(): Promise<void>;
}
