import React from 'react'; import { ComponentSchema } from '@sunmao-ui/core'; import { FetchTraitPropertiesSpec } from '@sunmao-ui/runtime'; import { Static } from '@sinclair/typebox'; import { EditorServicesInterface } from '../../types/editor'; interface Props { value: Static; component: ComponentSchema; services: EditorServicesInterface; onChange: (value: Static) => void; } export declare const ApiForm: React.FC; export {};