import type { Config, GetCollectPointsQuery } from '@farfetch/blackout-client'; import type { UseCollectPointsOptions } from './types/index.js'; declare function useCollectPoints(query?: GetCollectPointsQuery, options?: UseCollectPointsOptions): { actions: { fetch: (config?: Config | undefined, query?: GetCollectPointsQuery | undefined) => Promise; reset: () => void; }; data: import("@farfetch/blackout-redux").Nullable; isLoading: boolean; isFetched: boolean; error: import("@farfetch/blackout-redux").Nullable | undefined; }; export default useCollectPoints;