import type { FieldSchema } from '../../../../types/config'; type EditorProps = { onChange: (value: unknown) => void; schema: FieldSchema; value: unknown; }; export declare const emptyValue: (schema: FieldSchema) => unknown; export declare const FieldEditor: (props: EditorProps) => import("react/jsx-runtime").JSX.Element; export {};