/**
 * @see {@link CameraEnhancer.selectCamera}
 * */
export enum EnumCameraPosition {
    /**
     * Use the back-facing camera.
     */
    CP_BACK,
    /**
     * Use the front-facing camera.
     */
    CP_FRONT,

    /**
     * Use the ultra-wide back-facing camera.
     * @note iOS only. This option is not available on other platforms.
     */
    CP_BACK_ULTRA_WIDE,

     /**
     * Use the ultra-wide back-facing camera.
     * @note iOS only. This option is not available on other platforms.
     */
    CP_BACK_DUAL_WIDE_AUTO,
}
