Type AliasFormElementValidation

FormElementValidation:
    | undefined
    | string
    | {
        formElements: FormElementsValidation | undefined;
        type: "formElements";
    }
    | {
        entries: Record<RepeatableSetEntryIndex, FormElementsValidation | undefined>;
        set: string | undefined;
        type: "repeatableSet";
    }