import * as React from "react";
import { useCreateElement } from "./useCreateElement";
export type SystemContextType = {
useCreateElement?: typeof useCreateElement;
[key: string]: any;
};
export const SystemContext = React.createContext<SystemContextType>({});