import { CuiNullable } from '@cuby-ui/cdk'; import { Consumable } from './consumable'; export interface Maintenance { readonly id: string; readonly interval: { readonly unitPeriod: string; readonly value: CuiNullable; }; readonly duration: string; readonly consumables: Consumable[]; readonly holderInstructionStorageId?: string; }