import type { StyleGuide } from '../../../styles/style-guide/types'; export declare enum HistoryActionTypes { SET = "HISTORY.SET" } export declare type HistoryActions = { type: HistoryActionTypes.SET; payload: { styleguide: StyleGuide; }; };