import React from 'react'; import { Static } from '@sinclair/typebox'; import { WidgetProps } from '../../types/widget'; import { CORE_VERSION, CoreWidgetName } from '@sunmao-ui/shared'; declare const EventWidgetOptions: import("@sinclair/typebox").TObject>; declare type EventWidgetType = `${typeof CORE_VERSION}/${CoreWidgetName.Event}`; declare module '../../types/widget' { interface WidgetOptionsMap { 'core/v1/event': Static; } } export declare const EventWidget: React.FC>; declare const _default: { kind: string; impl: React.ComponentType>; version: string; metadata: { name: string; }; spec?: { options?: import("json-schema").JSONSchema7 | undefined; } | undefined; }; export default _default;