/**
 * A hook that creates a shallow reactive object from source object and updates it when object properties changes.
 * @returns A referentially stable shallow reactive object that reflects the current state of the props.
 */
export declare function useReactiveObject<P extends object>(obj?: P): Readonly<import("@vue/reactivity").ShallowReactive<P>> | undefined;
