import { FunctionComponent, PropsWithChildren } from 'react'; interface ISourceCodeApi { /** Set the Source Code and notify subscribers */ setCodeAndNotify: (sourceCode: string) => void; } export declare const SourceCodeContext: import("react").Context; export declare const SourceCodeApiContext: import("react").Context; export declare const SourceCodeProvider: FunctionComponent; export {};