interface VideoInputProps { intlLabel: Record; onChange: (e: any) => void; attribute: Record; name: string; disabled?: boolean; error?: string; labelAction?: Record; required?: boolean; value?: any; [key: string]: any; } declare const VideoInput: ({ attribute, name, onChange, value, intlLabel, intlDescription }: VideoInputProps) => import("react/jsx-runtime").JSX.Element; export default VideoInput;