import { ChannelCredentials, Metadata } from 'grpc'; import { ClientIdentification } from './proto/control_pb'; interface Options { endpoint: string; meta: Metadata; credentials: ChannelCredentials; clientIdentification: ClientIdentification; } export declare class Platform { private client; private meta; private endpoint; private clientIdentification; private credentials; private controlStream; constructor({ endpoint, meta, credentials, clientIdentification }: Options); getPlatformServer(): Promise; openStream(): void; close(): void; } export {};