import { Puppet } from 'wechaty-puppet'; export interface PuppetServerOptions { endpoint: string; token: string; puppet: Puppet; } export declare class PuppetServer { readonly options: PuppetServerOptions; private grpcServer?; constructor(options: PuppetServerOptions); version(): string; start(): Promise; stop(): Promise; } //# sourceMappingURL=puppet-server.d.ts.map