import { Diagnostic } from '@typespec/compiler'; import { FunctionComponent, MouseEventHandler } from 'react'; import { CompilationState } from '../types.js'; export interface ProblemPaneProps { readonly collapsed: boolean; readonly compilationState: CompilationState | undefined; readonly onHeaderClick?: MouseEventHandler; readonly onDiagnosticSelected?: (diagnostic: Diagnostic) => void; } export declare const ProblemPane: FunctionComponent; //# sourceMappingURL=problem-pane.d.ts.map