import { makeAutoObservable } from "mobx"; import * as query from "./query"; import * as mutation from "./mutation"; import { readonly } from "./readonly"; export { observer } from "mobx-react-lite"; export declare namespace reactive { type Query = query.Query; type Mutation = mutation.Mutation; } export declare const reactive: typeof makeAutoObservable & { readonly: typeof readonly; query: typeof query.query; mutation: typeof mutation.mutation; };