import React from 'react'; interface Props { /** The message that will be shown when no camera devices are found. */ notFoundMsg?: string; /** The label that will be shown for camera selection, it defaults to "Camera source". */ label?: string; } export declare const CameraSelection: React.FC; export default CameraSelection;