import { Ack, AckInterface } from './Ack'; import { SendDataFunction } from './SendDataFunction'; export declare class ReceivedAck extends Ack { protected readonly token = "_RECEIVED_"; constructor(sendData: SendDataFunction); protected makeChoice(args: ReceivedArgs, ackInterface: AckInterface): void; private static fixCodecStruct; } interface ReceivedArgs { id: number; } export {};