import type React from "react"; export interface FeatureFlags { experimentalDesktopTypographyScale?: boolean; navigationV3?: boolean; } export interface FeatureFlagsContextValue { featureFlags: FeatureFlags; children?: React.ReactNode; } export declare const FeatureFlagsContext: React.Context; export default function FeatureFlagsProvider({ featureFlags, children }: FeatureFlagsContextValue): import("react/jsx-runtime").JSX.Element; export declare function useFeatureFlags(): FeatureFlags;