import { JDService } from "./service"; import { JDDevice } from "./device"; import { JDBus } from "./bus"; import { JDClient } from "./client"; import { SystemStatusCodes } from "./constants"; /** * Base class for service clients * @category Clients */ export declare class JDServiceClient extends JDClient { readonly service: JDService; constructor(service: JDService); protected get device(): JDDevice; protected get bus(): JDBus; get statusCode(): SystemStatusCodes; toString(): string; } //# sourceMappingURL=serviceclient.d.ts.map