import type { StyleGuide } from '../../../../styles/style-guide/types'; import { HistoryActions } from '../history-actions'; declare type HistoryData = { styleguide: StyleGuide; }; export declare const useHistoryActionCreators: () => { setData: (data: HistoryData) => HistoryActions; }; export {};