import React from 'react'; type VideoEvent = React.SyntheticEvent; type NativeVideoProps = React.HTMLProps; export type VideoComponentType = React.ComponentType; type VideoWithMessageProps = NativeVideoProps & { onNativeEvent?: (event: VideoEvent) => void; Video: VideoComponentType; }; declare const VideoWithMessage: React.ForwardRefExoticComponent & React.RefAttributes>; export default VideoWithMessage;