import type { RunSnapshot } from './loader'; import type { AllEvents, DashboardState } from './types'; export declare function reduceDashboard(state: DashboardState, event: AllEvents): DashboardState; export declare function applyDashboardEvent(state: DashboardState, event: AllEvents): DashboardState; export declare function applyRunSnapshots(state: DashboardState, snapshots: RunSnapshot[]): DashboardState; export declare function createDashboardState(): DashboardState;