interface IContext { visible: boolean; setVisible: (visible: boolean) => void; } const context = React.createContext< IContext | undefined >(undefined);