/** */ import React from 'react'; import { InputProps } from 'react-select/lib/components/Input'; import { InputFieldType } from '../wrapFieldWithMeta'; import type { MdxTemplate } from './plate/types'; export declare type RichTextType = React.PropsWithChildren>; export declare const MdxFieldPlugin: { name: string; Component: (props: InputFieldType) => JSX.Element; }; export declare const MdxFieldPluginExtendible: { name: string; validate(value: any): string; Component: (props: InputFieldType) => JSX.Element; };