import { MessageType } from '../../constants';
import { RawMessage } from '../../types';
import { IPortInputFormatSetupMessageFactory } from '../../features';
export declare class PortInputFormatSetupSingleOutboundMessageFactory implements IPortInputFormatSetupMessageFactory {
    private readonly defaultUnsubscribePortPollingInterval;
    private readonly minAllowedDeltaThreshold;
    createMessage(portId: number, mode: number, notificationsEnabled: boolean, deltaThreshold?: number): RawMessage<MessageType.portInputFormatSetupSingle>;
}
