import { Ordering } from '../store/useOrderingStore'; import { Collection } from '../views/collection/collection.types'; import { Connection } from './graphql.types'; export interface GraphqlResponse { collections: Collections; } export interface Collections { nodes: Collection[]; totalCount: number; pageInfo: { endCursor: string; hasNextPage: boolean; }; } export declare function useGetCollections(options: { searchTerm?: string; orderBy: Ordering; }, noCache?: boolean): Connection;