import type { PropsWithIsRepeatedAttribute, PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; import type { QuestionnaireItem } from 'fhir/r4'; import type { AttachmentValues } from './AttachmentItem'; interface AttachmentFieldWrapperProps extends PropsWithIsRepeatedAttribute, PropsWithIsTabledAttribute { qItem: QuestionnaireItem; attachmentValues: AttachmentValues; feedback: string; feedbackSeverity?: 'error' | 'warning'; readOnly: boolean; instructionsId: string | undefined; onUploadFile: (file: File | null) => void; onUrlChange: (url: string) => void; onFileNameChange: (fileName: string) => void; } declare function AttachmentFieldWrapper(props: AttachmentFieldWrapperProps): import("react/jsx-runtime").JSX.Element; export default AttachmentFieldWrapper;