/** * @class Report - Represents a report. */ export declare class Report { /** * @property {number} appId - The id of the app. */ appId: number; /** * @property {number} id - The id of the report. */ id: number; /** * @property {string} name - The name of the report. */ name: string; /** * @property {string} description - The description of the report. */ description: string; /** * @constructor - Creates a new instance of the Report class. */ constructor(appId: number, id: number, name: string, description: string); }