import { AnyComponentSchema } from '@open-formulieren/types'; /** * The props that every field render component must support. * * The interface/props are generic in the component schema - make sure to narrow this * for the component-type specific props/component. */ export interface FormioComponentProps { /** * The Formio.js component definition, limited to the features supported in Open Forms. */ componentDefinition: S; } /** * Render a single formio component definition as a form field/component. */ declare const FormioComponent: React.FC; export default FormioComponent;