import { type ActionDispatcher, type AnyAction } from "../../interfaces/index.js"; type CreateActionProxyOptions = { readonly context?: string[]; readonly applicable?: boolean; }; export declare const createActionProxy: (actionDispatcher: ActionDispatcher, options?: CreateActionProxyOptions) => T; export {};