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