import { RequestedPermission } from '../../model/requests/RequestedPermission.mjs'; import { SecretIdShareOptions } from './SecretIdShareOptions.mjs'; import { ShareMetadataBehaviour } from './ShareMetadataBehaviour.mjs'; export declare class FormShareOptions { requestedPermissions: RequestedPermission; shareEncryptionKey: ShareMetadataBehaviour; /** * * Specifies if the id of the patient linked to the form should be shared with the delegate */ sharePatientId: ShareMetadataBehaviour; shareSecretIds: SecretIdShareOptions; constructor(partial: Partial); }