import { type SagaIterator } from "redux-saga"; import { type IDashboardQuery } from "../../queries/base.js"; /** * Runs the provided query and returns its result. * * @param q - query to run * @param refresh - indicates whether the query should ignore cached results and re-load data from backend */ export declare function query(q: TQuery, refresh?: boolean): SagaIterator; /** * Runs the provided query, forcing refresh of any results that may be cached in the state, and returns its result. * * @param q - query to run */ export declare function queryFresh(q: IDashboardQuery): SagaIterator; //# sourceMappingURL=queryCall.d.ts.map