/** * Props accepted by the VideoCaptureComplete component. */ export interface VideoCaptureCompleteProps { onComplete?: () => void; } /** * Component displayed a transition between the video capture and the photo capture, to let the user * know that the video has been successfully captured. */ export declare function VideoCaptureComplete({ onComplete }: VideoCaptureCompleteProps): import("react").JSX.Element;