import { type JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
export interface EngineerCraft extends JournalEvent<"EngineerCraft"> {
    timestamp: string;
    ApplyExperimentalEffect?: string;
    Blueprint?: string;
    BlueprintID?: ID;
    BlueprintName?: string;
    Engineer?: string;
    EngineerID?: ID;
    ExperimentalEffect?: string;
    ExperimentalEffect_Localised?: string;
    Ingredients: Array<{
        Count: number;
        Name: string;
        Name_Localised?: string;
    }>;
    Level: number;
    Modifiers?: Array<{
        Label: string;
        LessIsGood?: number;
        OriginalValue?: number;
        Value?: number;
        ValueStr?: string;
        ValueStr_Localised?: string;
    }>;
    Module?: string;
    Quality?: number;
    Slot?: string;
}
