import { ReactNode } from 'react'; import { BrandContext } from '../schema/index.ts'; export declare function BrandProvider({ brand, children }: { brand?: BrandContext; children: ReactNode; }): import("react").JSX.Element; export declare function useBrand(): BrandContext;