import { PropsWithChildren } from "react"; type IONewTypefaceContextType = { newTypefaceEnabled: boolean; setNewTypefaceEnabled: (newTypefaceEnabled: boolean) => void; }; /** * Experimental Context for new UI Representations */ export declare const IONewTypefaceContext: import("react").Context; export declare const useIONewTypeface: () => IONewTypefaceContextType; type IOExperimentalContextProviderProps = { isNewTypefaceEnabled?: boolean; }; export declare const IONewTypefaceContextProvider: ({ children, isNewTypefaceEnabled }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=IONewTypefaceContextProvider.d.ts.map