export * from './fields'; export * from './widgets'; export type FormStatus = 'not-submitted' | 'submitting' | 'submitted'; export interface FormStatusOptions { /** * Controls form status, */ formStatus: FormStatus; /** * Sets error message at the top of the form. */ error?: string; _notificationId: string; } export type CustomValidationError = { fieldKey: string; error: string; };