import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
export interface ScanOrganic extends JournalEvent<"ScanOrganic"> {
    ScanType: string;
    Genus: string;
    Genus_Localised: string;
    Species: string;
    Species_Localised: string;
    Variant?: string;
    Variant_Localised?: string;
    WasLogged?: boolean;
    SystemAddress: ID;
    Body: number;
}
