import { type Signal } from '@angular/core'; import type { SQLocal } from '../client.js'; import type { ReactiveQueryStatus, StatementInput } from '../types.js'; export declare function useReactiveQuery>(db: SQLocal | Signal, query: StatementInput | Signal>): { data: Signal; error: Signal; status: Signal; };