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