type GOPRO_MODEL = 0 | 1 | 2 | 3 | 4;
declare const GOPRO_MODEL_UNKNOWN: 0;
declare const GOPRO_MODEL_HERO_3_PLUS_SILVER: 1;
declare const GOPRO_MODEL_HERO_3_PLUS_BLACK: 2;
declare const GOPRO_MODEL_HERO_4_SILVER: 3;
declare const GOPRO_MODEL_HERO_4_BLACK: 4;

export { GOPRO_MODEL_HERO_3_PLUS_BLACK, GOPRO_MODEL_HERO_3_PLUS_SILVER, GOPRO_MODEL_HERO_4_BLACK, GOPRO_MODEL_HERO_4_SILVER, GOPRO_MODEL_UNKNOWN };
export type { GOPRO_MODEL };
