import React from "react"; export interface IDesignSystemGlobals { ROOT_ID: string; } export declare const DesignSystemGlobalsContext: React.Context<{ ROOT_ID: string; }>; export declare const DesignSystemGlobalsProvider: React.Provider<{ ROOT_ID: string; }>; export declare const useGlobals: () => IDesignSystemGlobals;