@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
17 lines (16 loc) • 594 B
TypeScript
/// <reference types="react" />
export interface RegistrationAttributeOption {
id: string;
label: string;
}
/**
* Fetch the available validator plugins and display them in a multiselect.
*
* This requires an async function `getRegistrationAttributes` to be provided to the
* BuilderContext which is responsible for retrieving the list of available plugins.
*
* If a fetch error occurs, it is thrown during rendering - you should provide your
* own error boundary to catch this.
*/
declare const RegistrationAttributeSelect: React.FC;
export default RegistrationAttributeSelect;