import { DecomposeAttributes } from '../types';
/**
 * Uses attributes to decompose the name to it's original.
 * @param {string} name
 * @param {object} attributes
 * @return {string} Pure name
 */
export default function (name: string, attributes: DecomposeAttributes): string;
