import type { VideoCaptureProps } from '../types/index'; /** * Video capture component with webcam recording, screen recording, * and combined screen+webcam overlay recording. * * @example * ```tsx * { setVideoUrl(url); uploadVideo(blob) }} * maxDuration={120} * startLabel="Record" * stopLabel="Stop" * /> * ``` */ export default function VideoCapture({ onCapture, maxDuration, cameraOptions, startLabel, stopLabel, onError, }: VideoCaptureProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=VideoCapture.d.ts.map