import { CSSProperties } from 'react'; interface TextAreaProps { style?: CSSProperties | undefined; className?: string; id?: string; key?: string | number; setScreenshot: (screenshot: FileProp | null) => void; screenshot: FileProp | null; file: FileProp | null; setFile: (file: FileProp | null) => any; inputRef?: React.MutableRefObject; isVisible: boolean; setIsVisible: (isVisible: boolean) => void; onStartCapture: () => void; } interface FileProp { name: string; size: number; type: string; lastModified: number; webkitRelativePath: string; } export declare const InputImage: ({ style, className, id, key, screenshot, setScreenshot, file, setFile, inputRef, isVisible, setIsVisible, onStartCapture, }: TextAreaProps) => import("react/jsx-runtime").JSX.Element; export {};