/** * whether a is equal to b */ export declare const eq: (a: Temporal.ZonedDateTime, b: Temporal.ZonedDateTime) => boolean; /** * whether a is less then b */ export declare const lt: (a: Temporal.ZonedDateTime, b: Temporal.ZonedDateTime) => boolean; /** * whether a is less then or equal to b */ export declare const lte: (a: Temporal.ZonedDateTime, b: Temporal.ZonedDateTime) => boolean; /** * whether a is more then b */ export declare const gt: (a: Temporal.ZonedDateTime, b: Temporal.ZonedDateTime) => boolean; /** * whether a is more then or equal to b */ export declare const gte: (a: Temporal.ZonedDateTime, b: Temporal.ZonedDateTime) => boolean;