/** * * Represents a grouping of documents, identified by a GUID and a human-readable name. * / */ export declare class DocumentGroup { /** * * The globally unique identifier for this document group. */ guid: string | undefined; /** * * The human-readable name of the document group. */ name: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): DocumentGroup; }