import { Dispatch, SetStateAction } from "react";
export declare const useObjectState: <AF, S>(apiFactory: (setState: Dispatch<SetStateAction<S>>) => AF, initialState: S) => AF & {
    state: S;
    setState: Dispatch<SetStateAction<S>>;
};
