import { StoreLike } from '@state-adapt/rxjs'; import { StoreStates } from './proxy-store-tuple.type'; export declare const STATE_ADAPT_CONTEXT_MISMATCH_ERROR = "StateAdapt Error: This store was created by a different StateAdapt instance than the one provided to React through AdaptContext. Make sure the store and React use the same StateAdapt instance. If you created an instance with createStateAdapt, provide that instance through AdaptContext and import adapt and watch from the module where you called createStateAdapt instead of @state-adapt/react."; export declare function useProxyStates, Record>, FilterSelectors extends (keyof Store['__']['selectors'])[]>(store: Store, filterSelectors?: FilterSelectors): StoreStates>;