import React from 'react'; export interface LiveContextShape { code?: string; } export declare const LiveContext: React.Context; export interface LiveProviderProps { code?: string; } export declare const LiveProvider: React.FC;