import React from "react"; export type GrtCodeEditorType = { defaultValue?: string; height?: number; theme?: "light" | "vs-dark"; language?: "typescript" | "javascript" | "css" | "less" | "scss" | "json" | "html" | "java" | "c#" | "php"; onChange?: Function | any; onValidate?: Function | any; }; declare const GrtCodeEditor: React.FC; export default GrtCodeEditor;