import Vue from 'vue'; export default class YearTerm extends Vue { _yearTermAdd(years: number, terms: number, to: string): string; _yearTermNextTerm(from: string): string; _yearTermPrevTerm(from: string): string; _yearTermNextSemesterOffset(from: string): number; _yearTermNextSemester(from: string): string; _yearTermPrevSemesterOffset(from: string): number; _yearTermPrevSemester(from: string): string; _yearTermNextYear(from: string): string; _yearTermPrevYear(from: string): string; _yearTermValid(val: any): boolean; _yearTermCompress(val: string): string; _yearTermTermDescription(val: string, creditType?: string | undefined, defaultDescription?: boolean): string; _yearTermEmptySelection(): { value: string; format: string; description: string; text: string; }; _yearTermTransformList(yearTerms: string[]): { value: string; format: string; description: string; text: string; }[]; _yearTermElement(value: string): { value: string; format: string; description: string; text: string; }; _yearTermGenerateList(from: string, nNext?: number, nPrev?: number, byTerms?: boolean): { value: string; format: string; description: string; text: string; }[]; _yearTermDescription(val: string, creditType?: undefined): string; _yearTermYear(val: string): string; _yearTermTerm(val?: string): string; _yearTermFormat(val: string): string; }