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

declare const DIGICAM_CONTROL_ID = 155;
declare const DIGICAM_CONTROL_CRC_EXTRA = 0;
declare const DigicamControlDefinition: MessageDefinition;
interface MessageDigicamControl {
    extra_value: number;
    target_system: number;
    target_component: number;
    session: number;
    zoom_pos: number;
    zoom_step: number;
    focus_lock: number;
    shot: number;
    command_id: number;
    extra_param: number;
}

export { DIGICAM_CONTROL_CRC_EXTRA, DIGICAM_CONTROL_ID, DigicamControlDefinition };
export type { MessageDigicamControl };
