export interface ImmutableDate extends Omit { } /** * @internal */ export declare class ImmutableDate extends Date { setTime(): any; setMilliseconds(): any; setUTCMilliseconds(): any; setSeconds(): any; setUTCSeconds(): any; setMinutes(): any; setUTCMinutes(): any; setHours(): any; setUTCHours(): any; setDate(): any; setUTCDate(): any; setMonth(): any; setUTCMonth(): any; setFullYear(): any; setUTCFullYear(): any; }