/// import './completion'; export interface CodeViewProps { code: string; handleRun: () => void; } export declare type OnUpdate = (payload: { id: string; value: string; }) => void; export declare function CodeView({ code, handleRun }: CodeViewProps): JSX.Element;