/** * * * DTO representing a report generated after a group deletion operation. */ export declare class GroupDeletionReport { /** * * The type of the deleted resource. */ type: string; /** * * The unique identifier of the deleted group. */ id: string; /** * * The server on which the group was deleted. */ server: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): GroupDeletionReport; }