import { Rpc } from '../rpc';
import { RpcUpdateData } from './rpc-update-data-model';
export declare class RpcUpdateDataClient {
    /**
     * The update data command.
     *
     * @param name the module name.
     * @param subName the sub name of module.
     * @param data the update data object.
     * @return Promise<void> the promise object.
     */
    static updateData(rpc: Rpc, name: string, subName: string, data: RpcUpdateData): Promise<void>;
}
