import { lazy, Suspense } from 'react'; import { Props } from './MonacoQueryFieldProps'; const Field = lazy(() => import(/* webpackChunkName: "loki-query-field" */ './MonacoQueryField')); export const MonacoQueryFieldLazy = (props: Props) => { return ( ); };