import TplinkConnection from './tplink-connection'; import TcpSocket from './tcp-socket'; /** * @hidden */ export default class TcpConnection extends TplinkConnection { readonly socketType = "TCP"; protected getSocket(): Promise; send(payload: string, port: number, host: string, { timeout }: { timeout: number; }): Promise; } //# sourceMappingURL=tcp-connection.d.ts.map