AS3 does not support enumerations. I'm not immediately sure what the point of this generated proxy class is, but it isn't going to provide much of the enum behavior you're used to.
You'd have to do the following:
var imgType:ImageType = new ImageType();
imgType._imageType = "Png";
I know you said you cannot change the generated class, but if you wanted to create your own enumeration class, the following is a good blog post on the lack of AS3 enumerations and a workaround pattern:
http://www.liranuna.com/typesafe-assignable-enumerations-in-as3/
EDIT: Also check out the following question on enumerations in AS3, where the for links to official documentation on the "official" Flex enum "pattern" is linked, as well as the a helpful blog post referenced aboveon a custom enum implementation:
http://stackoverflow.com/questions/329652/enums-in-as3-flash-flex
