import type { ComponentType, SFC } from 'react'; import type { IArtifactEditorProps } from './IArtifactEditorProps'; export interface IArtifactKindConfig { label: string; typePattern: RegExp; description: string; isDefault: boolean; editCmp?: ComponentType | SFC; // Legacy artifacts properties type?: string; key: string; isMatch: boolean; customKind?: boolean; }