import { NoneValue, NthWeekdayOfMonthValue, LastNthDayWeekValue } from './../values'; import { Mode, Segment } from './../enums'; import { SegmentValues } from './base.type'; import { BaseValues } from './base.abstract'; declare type Values = SegmentValues; export declare class DayOfWeekValues extends BaseValues implements Values { protected readonly segment = Segment.dayOfWeek; readonly [Mode.NONE]: NoneValue; readonly [Mode.NTH_WEEKDAY_OF_MONTH]: NthWeekdayOfMonthValue; readonly [Mode.LAST_NTH_DAY_WEEK]: LastNthDayWeekValue; constructor(d?: Partial); clone(d?: Partial): DayOfWeekValues; } export {};