import type { UseConfigurationsOptions } from './types/index.js'; declare const useConfigurations: (options?: UseConfigurationsOptions) => { isLoading: boolean; error: import("@farfetch/blackout-client").BlackoutError | null; isFetched: boolean; data: Record | undefined; actions: { fetch: (query?: import("@farfetch/blackout-client").ConfigurationsQuery | undefined, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; reset: () => void; }; }; export default useConfigurations;