/**
 * Gets the name of a function, in a cross-browser way.
 *
 * @param {Function} fn function (usually a constructor)
 * @return {string}
 */
declare const name: (fn: Function) => string;
export default name;
