import { editor } from 'monaco-editor'; import { FunctionComponent } from 'react'; import { EditorProps } from './editor.js'; import { PlaygroundEditorsOptions } from './playground.js'; export { getChangedLineNumbers } from './diff-utils.js'; export interface TypeSpecEditorProps extends Omit { options?: editor.IStandaloneEditorConstructionOptions; } export declare const TypeSpecEditor: FunctionComponent; export declare const OutputEditor: FunctionComponent<{ filename: string; value: string; changedLineNumbers?: number[]; editorOptions?: PlaygroundEditorsOptions; }>; //# sourceMappingURL=typespec-editor.d.ts.map