import { ReactElement } from 'react'; interface VideoProps { src: string | undefined; maxHeight?: string; maxWidth?: string; } export declare function FitVideo(props: VideoProps): ReactElement; export {};