import type { Brand } from '@farfetch/blackout-client'; import type { UseBrandOptions } from './types/useBrand.js'; declare const useBrand: (brandId: Brand['id'], options?: UseBrandOptions) => { isLoading: boolean | undefined; error: import("@farfetch/blackout-client").BlackoutError | undefined; isFetched: boolean; data: Brand | undefined; actions: { fetch: () => Promise; }; }; export default useBrand;