import { Year } from '../types';
/**
   * figure out the animal and element for a tibetan year
   *
   * @param {Year} year
   * @return {Year} with additional attributes
   */
declare const yearAttributes: (year: Year) => Year;
export default yearAttributes;
