import { type ReactNode } from 'react'; /** * How the flow is branded, supplied by the host app. Separate from identity: * this follows the host's agreement with Fun, not who the user is. */ export interface FunkitBranding { /** The host's `hideAttribution` config, defaulted to false here. */ hideAttribution: boolean; } export declare function FunkitBrandingProvider({ hideAttribution, children, }: { hideAttribution?: boolean; children: ReactNode; }): import("react").JSX.Element; export declare function useFunkitBranding(): FunkitBranding; //# sourceMappingURL=BrandingContext.d.ts.map