import React from 'react'; import { FormikHelpers, FormikHandlers, FormikState } from 'formik'; import { FetchTraitPropertiesSpec } from '@sunmao-ui/runtime'; import { ComponentSchema } from '@sunmao-ui/core'; import { Static } from '@sinclair/typebox'; import { EditorServicesInterface } from '../../types/editor'; import { WidgetProps } from '../..'; declare type Values = Static; interface Props { api: ComponentSchema; spec: WidgetProps['spec']; formik: FormikHelpers & FormikHandlers & FormikState; services: EditorServicesInterface; } export declare const Body: React.FC; export {};