import { default as React } from 'react'; import { FileProp } from './GeneralFeedbackContent'; declare const ImageInput: ({ screenshot, setIsVisible, isVisible, onStartCapture, file, inputRef, setFile, setScreenshot, feedbackType }: { screenshot: FileProp | null | undefined; setIsVisible: Function | undefined; isVisible: boolean | undefined; onStartCapture: () => void; file: FileProp | null; inputRef: React.MutableRefObject; setFile: (file: FileProp | null) => any; setScreenshot: ((screenshot: FileProp | null) => void) | undefined; feedbackType: string; }) => import("react/jsx-runtime").JSX.Element; export default ImageInput;