/// import 'requestidlecallback'; import { OnUpdate } from './CodeView'; import './completion'; export interface CodeCellProps { id: string; value: string; title?: string; onUpdate: OnUpdate; } export declare function CodeCell({ id, value, title, onUpdate }: CodeCellProps): JSX.Element;