import { DeliveryStatusEnum } from './DeliveryStatusEnum';
/** OpenSearch Dashboards instance */
export interface Osd {
    /** OpenSearch Dashboards creation */
    createdAt: string;
    /** Status of the delivering process */
    deliveryStatus: DeliveryStatusEnum;
    /** OpenSearch Dashboards description */
    description: string;
    /** Indicates if you are allowed to edit entry */
    isEditable: boolean;
    /** OpenSearch Dashboards name */
    name: string;
    /** OpenSearch Dashboards ID */
    osdId: string;
    /** OpenSearch Dashboards last update */
    updatedAt?: string;
}
//# sourceMappingURL=Osd.d.ts.map