import { Observable } from 'rxjs'; import { Rpc } from '../rpc'; import { RpcObservableClient } from '../rpc-observable-client'; import { RpcOutbound } from '../rpc-outbound'; import { RpcObservableUpdateThemeError, RpcObservableUpdateThemeRequest, RpcObservableUpdateThemeResult } from './rpc-observable-update-theme-model'; export declare class RpcObservableUpdateThemeClient extends RpcObservableClient { /** * Initializes a new instane of RpcObservableUpdateThemeClient class. * * @param rpc the rpc object. */ constructor(rpc: Rpc); /** * The update theme command. * * @param request the Rpc update theme object. * @param outbound the Rpc outbound channel object. * @return Observable the observable object. */ updateTheme(request: RpcObservableUpdateThemeRequest, outbound?: RpcOutbound): Observable; }