import { type PeriodType } from '../../../enums/periodType'; /** * 주어진 날짜 배열에서 비활성화된 연도를 찾아 반환합니다. * @param disabledDate - 비활성화할 날짜 배열 * @param periodType - 기간 타입 (연도, 분기, 월, 반기) * @throws {Error} 유효하지 않은 입력값이 전달된 경우 * @returns 비활성화된 연도의 날짜 배열 */ export declare const getDisabledYearToDate: (disabledDate: Date[], periodType: PeriodType) => Date[]; //# sourceMappingURL=getDisabledYear.d.ts.map