import type { UseThemeOptions } from './types/useTheme.types.js'; declare const useTheme: ({ code, enableAutoFetch, fetchConfig, ...queryParams }: UseThemeOptions) => { error: import("@farfetch/blackout-client").BlackoutError | undefined; isLoading: boolean | undefined; isFetched: boolean; data: { theme: import("@farfetch/blackout-client").Theme | undefined; }; actions: { fetch: () => Promise; }; }; export default useTheme;