import type { JournalEvent } from "../../JournalEvent.js";
export interface Friends extends JournalEvent<"Friends"> {
    Name: string;
    Status: string;
}
