import { BitBuffer } from '../../core/buffer/bit-buffer';
import { BodyConverter } from '../../client/api/converter/body/body-converter';
import { UartSettingsConverter } from '../converter/model-converters';
import { UartSettings } from '../model/models';
export declare type UartSettingConverterContextType = {
    buffer: BitBuffer;
};
export declare class ReversedUartSettingsConverter implements BodyConverter<UartSettings> {
    converter: UartSettingsConverter;
    decode(data: Uint8Array): UartSettings;
    encode(settings: UartSettings): Uint8Array;
}
