import type { StateActionMap } from "./types"; type StripState = F extends (state: any, ...args: infer Args) => void ? (...args: Args) => void : never; type BindActionProps> = { [K in keyof A]: StripState; }; export declare function bindActions>(actions: A, set: (fn: (s: S) => void) => void): BindActionProps; export {};