export function Provider({ children }: { children: any; }): JSX.Element; export function useGlobalContext(): { IS_WEDA_IDE: boolean; wedaUserId: any; wedaRelatedRoles: any[]; getDataSourceByName: () => void; callWorkflow: () => void; callWedaApi: () => void; showToast: () => void; showError: () => void; }; export function globalContextConnect(WrappedComponent: any): (props: any) => JSX.Element;