How do you make notations visible outside of a module signature in Coq?

Question

I've defined a module signature in Coq that defines several notations. When I try to use these notations outside of the signature however, Coq fails. A simplified version of my code is given below. Any help would be appreciated.

Module Type Field_Axioms.

Declaring a scope implicitly is deprecated; use in advance an explicit "Declare Scope Field_scope.". [undeclared-scope,deprecated]
Open Scope Field_scope. Parameter Element : Set. Parameter addition : Element -> Element -> Element. Infix " + " := addition : Field_scope. (* ASSIGNS THE "+" OPERATOR TO SCOPE. *) End Field_Axioms. Module Type Ordered_Field_Axioms. Declare Module Field : Field_Axioms.
Scope Field_scope No delimiting key
End Ordered_Field_Axioms.

Answer

You can replace:

Declare Module Field : Field_Axioms.

with:

Declare Module Import Field : Field_Axioms.