export { ActionMap } from './types'; import { PageActions, PageActionTypes } from './page.actions'; import { RootActions, RootActionTypes } from './root.actions'; /** * Tidy UI components internal actions */ export declare type AppActionTypes = PageActionTypes | RootActionTypes; /** * Tidy UI context actions */ declare const Actions: { Page: typeof PageActions; Root: typeof RootActions; }; export { Actions };