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

declare const GOPRO_SET_REQUEST_ID = 218;
declare const GOPRO_SET_REQUEST_CRC_EXTRA = 0;
declare const GoproSetRequestDefinition: MessageDefinition;
interface MessageGoproSetRequest {
    target_system: number;
    target_component: number;
    cmd_id: number;
    value: number[];
}

export { GOPRO_SET_REQUEST_CRC_EXTRA, GOPRO_SET_REQUEST_ID, GoproSetRequestDefinition };
export type { MessageGoproSetRequest };
