import { DispatcherMap, ReducerMap, UseLocalSliceProps } from './types';
export declare function useLocalSlice<State, Reducers extends ReducerMap<State>>({ initialState, reducers, slice, }: UseLocalSliceProps<State, Reducers>): [State, DispatcherMap<Reducers>];