import type { ImageCaptureProps } from '../types/index'; /** * Image capture component with webcam, file upload, and screen capture support. * * @example * ```tsx * setPhoto(dataUrl)} * onClear={() => setPhoto('')} * allowUpload * captureLabel="Take Photo" * /> * ``` */ export default function ImageCapture({ onCapture, onClear, photo, cameraOptions, maxWidth, maxHeight, quality, format, allowUpload, captureLabel, uploadLabel, onError, }: ImageCaptureProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ImageCapture.d.ts.map