package starling.display {

	/**
	 * @externs
	 */
	public class ButtonState {
		/** The button's default state. */
		public static const UP:String = "up";

		/** The button is pressed. */
		public static const DOWN:String = "down";

		/** The mouse hovers over the button. */
		public static const OVER:String = "over";

		/** The button was disabled altogether. */
		public static const DISABLED:String = "disabled";
	}
	
}