import { type DateCellIndex } from './date.cell'; import { type DateCellScheduleDayCodesInput } from './date.cell.schedule'; /** * Converts schedule day codes into absolute {@link DateCellIndex} values relative to a known Sunday index. * * Each day code is expanded to its corresponding day(s) of the week, then offset from the Sunday reference index. * * @param sundayIndex - The DateCellIndex for the Sunday of the target week. * @param dayCodes - Day codes to convert (e.g. WEEKDAY, individual days) * @returns Array of DateCellIndex values for the matching days. * * @example * ```ts * // If index 0 is Sunday, get indexes for weekdays (Mon-Fri) * dateCellIndexsForDateCellScheduleDayCodes(0, [DateCellScheduleDayCode.WEEKDAY]); * // [1, 2, 3, 4, 5] * ``` */ export declare function dateCellIndexsForDateCellScheduleDayCodes(sundayIndex: DateCellIndex, dayCodes: DateCellScheduleDayCodesInput): DateCellIndex[];