import type { JournalEvent } from "../../JournalEvent.js";
import type { MicroResource } from "../types/MicroResource.js";
export interface TradeMicroResources extends JournalEvent<"TradeMicroResources"> {
    Offered: MicroResource[];
    TotalCount: number;
    Received: string;
    Received_Localised?: string;
    Count: number;
    Category: string;
    MarketID: number;
}
