import React from 'react'; import type { RemotionMainVideoProps } from './props'; /** * @description allows you to include a video file in your Remotion project. It wraps the native HTMLVideoElement. * @see [Documentation](https://www.remotion.dev/docs/video) */ export declare const Video: React.ForwardRefExoticComponent, HTMLVideoElement>, "nonce" | "onError" | "onEnded" | "autoPlay" | "controls" | "disableRemotePlayback"> & { name?: string | undefined; volume?: import("../volume-prop.js").VolumeProp | undefined; playbackRate?: number | undefined; acceptableTimeShiftInSeconds?: number | undefined; allowAmplificationDuringRender?: boolean | undefined; toneFrequency?: number | undefined; pauseWhenBuffering?: boolean | undefined; showInTimeline?: boolean | undefined; delayRenderTimeoutInMilliseconds?: number | undefined; loopVolumeCurveBehavior?: import("../audio/use-audio-frame.js").LoopVolumeCurveBehavior | undefined; delayRenderRetries?: number | undefined; onError?: ((err: Error) => void) | undefined; onAutoPlayError?: (() => void) | undefined; } & RemotionMainVideoProps & { /** * @deprecated For internal use only */ readonly stack?: string | undefined; }, "ref"> & React.RefAttributes>;