/** Extras informations about a field */
export interface FieldInformation {
    /** Name of the field concerned by restrictions */
    fieldName: string;
    /** Indicates if the field is mandatory when editing */
    mandatory: boolean;
    /** Indicates if the field can't be edited */
    readOnly: boolean;
}
//# sourceMappingURL=FieldInformation.d.ts.map