import type { PreviewViewMethods, PreviewViewProps } from '../specs/views/PreviewView.nitro'; /** * The `` component. * * The higher-level {@linkcode Camera} component * renders this native component under the hood. * * The `` requires a {@linkcode CameraPreviewOutput} * that is also connected to a {@linkcode CameraSession} to * display a live Camera feed. * * @see {@linkcode PreviewView} * @see {@linkcode PreviewViewProps} * @see {@linkcode PreviewViewMethods} * @example * ```tsx * function App() { * const previewView = useRef(null) * const previewOutput = usePreviewOutput() * * return ( * { * previewView.current = r * })} * /> * ) * } * ``` */ export declare const NativePreviewView: import("react-native-nitro-modules").ReactNativeView;