import { IReplyParser } from '../../hub';
import { MessageType } from '../../constants';
import { PortOutputCommandFeedbackInboundMessage, RawMessage } from '../../types';
export declare class PortOutputCommandFeedbackReplyParser implements IReplyParser<MessageType.portOutputCommandFeedback> {
    readonly messageType = MessageType.portOutputCommandFeedback;
    parseMessage(message: RawMessage<MessageType.portOutputCommandFeedback>): PortOutputCommandFeedbackInboundMessage;
}
