Files types.ts interface not recognize

Hello,

We develop a plugin who work in Grafana version 6.7 and also version 7.1 but when we upgrade in version 7.2 the callback of the interface in types.ts not work?
module.ts:
import { PanelPlugin } from ‘@grafana/data’;
import { SimpleOptions, defaults } from ‘./types’;
import { SimplePanel } from ‘SimplePanel’;
import { SimpleEditor } from ‘SimpleEditor’;

export const plugin = new PanelPlugin<SimpleOptions>`(SimplePanel).setDefaults(defaults).setEditor(SimpleEditor);

SimplePanel.ts:
type Props = PanelProps;
export class SimplePanel extends React.Component {}

SimpleEditor.ts:
type Props = StandardEditorProps;
export class SimpleEditor extends React.Component {}

Best Regards.