export declare enum TestLogEntryState { Original = 0, Started = 1, Finished = 2 } export interface TestLogEntry { message: string; entries: TestLogEntry[]; state: TestLogEntryState; trace: any; } export interface TestLogs { history: TestLogEntry[]; } export declare const init: () => TestLogs; export declare const createLogEntry: (message: string) => TestLogEntry;