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