import { ConfigPlugin } from '@expo/config-plugins'; /** * Plugin options for react-native-smart-camera */ export interface SmartCameraPluginOptions { /** * Custom camera usage description for iOS * @default "This app uses the camera for face detection and video streaming" */ cameraPermissionText?: string; /** * Custom microphone usage description for iOS * @default "This app uses the microphone for audio streaming" */ microphonePermissionText?: string; /** * Enable ML Kit Face Detection * @default true */ enableMLKit?: boolean; /** * Enable WebRTC support * @default true */ enableWebRTC?: boolean; } declare const _default: ConfigPlugin; export default _default;