import { StoreApi } from 'zustand'; export type WithoutCallSignature = { [K in keyof T]: T[K]; }; export declare const storeApiSetState: (storeApi: WithoutCallSignature>, state: Partial, replace: boolean, action: any) => void;