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