import * as React from "react"; import { EditorMode, EditorComponentProps } from "@sc/modules/v2/Editor/types"; export interface ITestingProps { mode?: EditorMode; properties: React.CSSProperties; testId?: string; } export interface PluginProps extends EditorComponentProps { settings: ITestingProps; }