import React from 'react'; import type { ViewProps } from 'react-native'; import './styles.css'; interface BarCodeAcceptedFormat { acceptedFormats: string[]; } interface Props extends ViewProps { autoFocusEnabled: boolean; flashModeEnabled: boolean; acceptFormats?: BarCodeAcceptedFormat; onScanResultListener?: (event: any) => void; onErrorListener?: (event: any) => void; frameWidth: number; frameHeight: number; frameBorderColor?: string; screenWidth: number; screenHeight: number; isTouchSupported?: boolean; touchSupportedCallback?: (touchSupported: boolean) => void; } export type BarcodeScannerViewType = React.ForwardRefExoticComponent> & { takePhoto(): string; getNumberOfCameras(): number; flashStatus(): boolean; }; declare const BarcodeScannerView: React.ForwardRefExoticComponent>; export default BarcodeScannerView; //# sourceMappingURL=BarcodeScannerViewNativeComponent.web.d.ts.map