declare namespace openfl.text {
	
	/**
	 * The TextFieldType class is an enumeration of constant values used in
	 * setting the `type` property of the TextField class.
	 */
	export enum TextFieldType {
		
		/**
		 * Used to specify a `dynamic` TextField.
		 */
		DYNAMIC = "dynamic",
		
		/**
		 * Used to specify an `input` TextField.
		 */
		INPUT = "input"
		
	}
	
}


export default openfl.text.TextFieldType;