import { type LogEntry } from 'winston'; import type { AppThunk, RootState } from '../store'; export interface Log { autoScroll: boolean; logEntries: LogEntry[]; isLoggingVerbose: boolean; } export declare const autoScroll: (state: RootState) => boolean; export declare const logEntries: (state: RootState) => LogEntry[]; export declare const isLoggingVerbose: (state: RootState) => boolean; export declare const reducer: import("redux").Reducer, addEntries: import("@reduxjs/toolkit").ActionCreatorWithPayload, clear: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"log/clear">, toggleAutoScroll: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"log/toggleAutoScroll">; export declare const setIsLoggingVerbose: (enable: boolean) => AppThunk; //# sourceMappingURL=logSlice.d.ts.map