/// import { PropertiesDocumentType } from "../../services/uploadManagement.service"; import { ContentType } from "./helper"; declare type PropsGroup = { doc: PropertiesDocumentType; isUpdate: boolean; onChange: (id: number, type: ContentType, value: string) => void; }; export default function GroupInputProperties({ doc, isUpdate, onChange }: PropsGroup): JSX.Element; export {};