import { UseLiveRunnerRetrun } from './useLiveRunner';
import { Language, Theme } from './types';
export type LiveContextProps = UseLiveRunnerRetrun & {
    language?: Language;
    theme?: Theme;
};
export declare const LiveContext: import("react").Context<LiveContextProps>;
export declare const useLiveContext: () => LiveContextProps;
