In reply to adrianf0:
You should feine your parameters in a seperate package like this:
package my_param_pkg;
parameter WIDTH_A = 16;
parameter WIDTH_B = 32;
endpackage
Then you can import this package in any place you need these parameters, like in the interface, etc.
Take care to compile this package prior to any other code.