declare namespace starling.utils {
	export class Execute {
		/**
		 *  Executes a function with the specified arguments. If the argument count does not match
		 *      *  the function, the argument list is cropped / filled up with <code>null</code> values. 
		 */
		static execute(func: Function, args?: Array<any>): void;
	}
}
export default starling.utils.Execute;