export declare const useSynchronousReducer: <S, A>(reducer: (s: S, a: A) => S, initialState: S) => readonly [S, (a: A) => S];
