import { DecryptedPropertyStub } from './PropertyStub.mjs'; /** * * * DTO wrapping a set of property stubs, used for bulk property operations. */ export declare class ListOfProperties { /** * * The set of property stubs. */ properties: Array; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): ListOfProperties; }