import React from 'react'; import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; interface AttachmentFileCollectorProps extends PropsWithIsTabledAttribute { uploadedFile: File | null; readOnly: boolean; instructionsId: string | undefined; onUploadFile: (file: File | null) => void; } declare const AttachmentFileCollector: React.NamedExoticComponent; export default AttachmentFileCollector;