import Image from "./Image";
declare namespace starling.display {
	export class SetupAutomator {
		constructor(onAssign: (arg0: Image) => void, onRelease: (arg0: Image) => void);
		add(onAssign: (arg0: Image) => void, onRelease: (arg0: Image) => void): void;
		remove(onAssign: (arg0: Image) => void, onRelease: (arg0: Image) => void): void;
		onAssign(image: Image): void;
		onRelease(image: Image): void;
	}
}
export default starling.display.SetupAutomator;