///
import type { AssetCollection } from '../../contentful/types';
import { UseQueryOptions, UseQueryResult } from './useQuery';
export type UseQueryAssetsResult = UseQueryResult;
/**
* Queries the dataSource for assets matching the given query.
*/
export declare function useQueryAssets(query?: Record, options?: UseQueryOptions,
/** Overrides the dependency list to control when the query is re-run */
deps?: React.DependencyList): UseQueryAssetsResult;