/// <reference types="react" />
import { ViewStyle } from 'react-native';
export interface ImageResult {
    url: string;
    width: number;
    height: number;
}
export interface CameraViewProps {
    style?: ViewStyle;
}
export declare const CameraPreviewView: (props: CameraViewProps) => JSX.Element;
