import { Query, QueryRows, Row } from "@evolu/common/local-first";
/** Subscribe to {@link Query} {@link QueryRows} changes. */
export declare const useQuerySubscription: <R extends Row>(query: Query<R>, options?: Partial<{
    /**
     * Only subscribe and get the current value once. Subscribed query will not
     * invoke React Suspense after a mutation.
     */
    readonly once: boolean;
}>) => QueryRows<R>;
//# sourceMappingURL=useQuerySubscription.d.ts.map