import { type Signal } from '@angular/core'; import type { SQLocal } from '../client.js'; import type { ReactiveQueryStatus, StatementInput } from '../types.js'; /** * A signal function for using reactive SQL queries in Angular components. * @see {@link https://sqlocal.dev/api/reactivequery#angular} */ export declare function useReactiveQuery>(db: SQLocal | Signal, query: StatementInput | Signal>): { data: Signal; error: Signal; status: Signal; };