/// import { FieldProps } from 'formik'; export interface VideoInputProps extends FieldProps { className?: string; classes?: { root?: string; main?: string; button?: string; }; label?: string; optional?: boolean | string; buttonText?: string; } declare function VideoInput({ className, classes, label, optional, buttonText, ...fieldProps }: VideoInputProps): JSX.Element; export { VideoInput };