import { Arguments } from 'yargs';
export declare const command = "restore [backup_directory]";
export declare const describe = "restore an xud instance from seed";
export declare const builder: {
    backup_directory: {
        description: string;
        type: string;
    };
};
export declare const handler: (argv: Arguments<any>) => Promise<void>;
