import { UseInfiniteQueryResult } from "@tanstack/react-query"; interface UseQuestProps { pageLimit?: number; aggregationDisabled?: boolean; chain: string; address: string; } declare const useQuest: ({ pageLimit, aggregationDisabled, chain, address, }: UseQuestProps) => UseInfiniteQueryResult; export { useQuest }; //# sourceMappingURL=useQuest.d.ts.map