import React from "react"; import { StliteKernel } from "../kernel"; export interface StliteKernelContextValue { kernel: StliteKernel; } export declare const StliteKernelContext: React.Context; export interface StliteKernelProviderProps { kernel: StliteKernel; children: React.ReactNode; } export declare function StliteKernelProvider(props: StliteKernelProviderProps): JSX.Element; export declare function useStliteKernel(): StliteKernel;