/** Graylog dashboard */
export interface Dashboard {
    /** Dashboard creation */
    createdAt: string;
    /** Dashboard ID */
    dashboardId: string;
    /** Dashboard description */
    description: string;
    /** Indicates if you are allowed to edit entry */
    isEditable: boolean;
    /** Dashboard description */
    title: string;
    /** Dashboard last update */
    updatedAt?: string;
}
//# sourceMappingURL=Dashboard.d.ts.map