declare type Result<T> = [T, (value: Partial<T>) => void, () => void];
export declare function useObjectState<T>(initialState: T): Result<T>;
export {};
