import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; import type { AttachmentValues } from './AttachmentItem'; interface AttachmentFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText: string | undefined; 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 AttachmentField(props: AttachmentFieldProps): import("react/jsx-runtime").JSX.Element; export default AttachmentField;