import { MessageDefinition } from '../../../core/types.js';

declare const OSD_PARAM_SHOW_CONFIG_REPLY_ID = 11036;
declare const OSD_PARAM_SHOW_CONFIG_REPLY_CRC_EXTRA = 0;
declare const OsdParamShowConfigReplyDefinition: MessageDefinition;
interface MessageOsdParamShowConfigReply {
    request_id: number;
    min_value: number;
    max_value: number;
    increment: number;
    result: number;
    param_id: string;
    config_type: number;
}

export { OSD_PARAM_SHOW_CONFIG_REPLY_CRC_EXTRA, OSD_PARAM_SHOW_CONFIG_REPLY_ID, OsdParamShowConfigReplyDefinition };
export type { MessageOsdParamShowConfigReply };
