/** Log line */
export interface LogLine {
    /** Content of the log */
    content: string;
    /** Id of the log */
    id: number;
    /** Datetime of the log */
    timestamp: string;
}
//# sourceMappingURL=LogLine.d.ts.map