export interface CameraProps { width?: number; height?: number; readonly graph_uid: string; onDownload?: (dataURL: string) => void; } export declare type Props = CameraProps; export declare const Camera: (props: CameraProps) => JSX.Element;