/** * Poor mans version of Modernizr.prefixed, it will attempt to find a potentially vendor-prefixed property on a given * object. * * @param {string} str name of the property to look for * @param {object} obj object in which the property will be searched for, if undefined will use the window object. * @param {object} scope if a function is found, it will be bound to this object before being returned. */ declare function Prefixed(str: string, obj?: any, scope?: any): T; export = Prefixed;