import { IReplyParser } from '../../hub';
import { MessageType } from '../../constants';
import { InboundMessage, RawMessage } from '../../types';
export declare class PortModeInformationReplyParser implements IReplyParser<MessageType.portModeInformation> {
    readonly messageType = MessageType.portModeInformation;
    parseMessage(message: RawMessage<MessageType.portModeInformation>): InboundMessage & {
        messageType: MessageType.portModeInformation;
    };
    private parsePortModeInformationName;
    private parsePortModeInformationRawRange;
    private parsePortModeInformationPctRange;
    private parsePortModeInformationSiRange;
    private parsePortModeInformationSymbol;
    private parsePortModeInformationMapping;
    private parsePortModeInformationMotorBias;
    private parsePortModeInformationCapabilityBits;
    private parsePortModeInformationValueFormat;
}
