///
import type { EntryCollection } from '../../contentful/types';
import { UseQueryOptions, UseQueryResult } from './useQuery';
export type UseQueryEntriesResult = UseQueryResult>;
export declare function useQueryEntries(
/**
* The content type must be provided when querying entries to ensure that the
* query comparison is being made against the correct data type.
* For example: "title" of a "blogPost" is different than "title" of a "person".
*/
contentType: string,
/**
* The query object that is used to match entries in the data source.
*
* The special query parameters "skip", "limit", "locale", and "include"
* can be used to control the pagination and normalization of the results.
*/
query?: Record, options?: UseQueryOptions,
/** Overrides the dependency list to control when the query is re-run */
deps?: React.DependencyList): UseQueryEntriesResult;