import { AnyComponentSchema } from '@open-formulieren/types'; import { FormSettings } from '../context'; export interface FormSettingsProviderProps { /** * Mark required fields with an asterisk. If asterisks are not used, then a suffix * is added to the label of optional fields to specify the field is not required. */ requiredFieldsWithAsterisk?: boolean; components: AnyComponentSchema[]; componentParameters?: FormSettings['componentParameters']; validatePluginCallback?: FormSettings['validatePluginCallback']; children?: React.ReactNode; } declare const FormSettingsProvider: React.FC; export default FormSettingsProvider;