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

declare const GOPRO_GET_RESPONSE_ID = 217;
declare const GOPRO_GET_RESPONSE_CRC_EXTRA = 0;
declare const GoproGetResponseDefinition: MessageDefinition;
interface MessageGoproGetResponse {
    cmd_id: number;
    status: number;
    value: number[];
}

export { GOPRO_GET_RESPONSE_CRC_EXTRA, GOPRO_GET_RESPONSE_ID, GoproGetResponseDefinition };
export type { MessageGoproGetResponse };
