import { TcpOptions as NestTcpOptions } from '@nestjs/microservices'; import { BaseTransport } from './base.transport'; export interface TcpOptions { host?: string; port?: number; retryAttempts?: number; retryDelay?: number; serializer?: any; tlsOptions?: any; deserializer?: any; socketClass?: any; } export declare class TcpTransport extends BaseTransport { options: TcpOptions; constructor(props: Partial); getOptions(): NestTcpOptions; } //# sourceMappingURL=tcp.transport.d.ts.map