export interface CounterState { count: number; } export declare const initialState: CounterState; export declare const name: "counter", reducer: import("redux").Reducer; export declare const increment: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const selectCount: import("reselect").Selector<{ counter: CounterState; }, number, []> & { unwrapped: (state: CounterState) => number; }; //# sourceMappingURL=counterSlice.d.ts.map