import { PublicLogEntry } from './PublicLogEntry';
/** List of logs */
export interface PublicLog {
    /** Cache store timestamp */
    cacheDate?: string;
    /** Total amount of lines */
    count: number;
    /** Logs */
    data: PublicLogEntry[];
}
//# sourceMappingURL=PublicLog.d.ts.map