import React from 'react'; import { WidgetProps } from '../../types/widget'; import { CORE_VERSION, CoreWidgetName } from '@sunmao-ui/shared'; import type { JSONSchema7 } from 'json-schema'; declare type ModuleWidgetType = `${typeof CORE_VERSION}/${CoreWidgetName.Module}`; declare module '../../types/widget' { interface WidgetOptionsMap { 'core/v1/module': {}; } } export declare const ModuleWidget: React.FC>; declare const _default: { kind: string; impl: React.ComponentType>; version: string; metadata: { name: string; }; spec?: { options?: JSONSchema7 | undefined; } | undefined; }; export default _default;