import type React from 'react'; export interface ActionType { type: string; value?: Record; } export declare const APP_CONTEXT_IDENTIFIER: unique symbol; export interface AppContextType { useDispatch: () => React.Dispatch; useStore: () => T; }