import { BaseAttachmentFieldProps } from './BaseAttachmentField'; declare function AttachmentField({ entityId: _entityId, property, disabled, showUser, userResource, resource: _resource, ...props }: AttachmentFieldProps): JSX.Element; type AttachmentFieldProps = BaseAttachmentFieldProps & { title: string; entityId?: string; property?: string; disabled?: boolean; /** * Allows you to define the base resource to use, for REST calls, to retrieve user data associated with the single attachment. * If not specified, the default value is 'entities/user'. */ userResource?: string; /** * If true, the user data associated with the single attachment will be displayed. */ showUser?: boolean; /** * When the AttachmentInput is used inside a nested form, you can specify the root resource to use for the REST calls. * If not specified, the default value is the current resource passed by context. */ resource?: string; }; export { AttachmentField }; export type { AttachmentFieldProps }; //# sourceMappingURL=AttachmentField.d.ts.map