export declare enum TimeConvention {
    /**
     * The 12-hour clock is a time convention in which the 24 hours of the day are
     * divided into two periods: a.m. and p.m.
     */
    Hours12 = 1,
    /**
     * The 24-hour clock is the convention of time keeping in which the day runs from midnight to
     * midnight and is divided into 24 hours, indicated by the hours passed since midnight, from 0 to 23
     */
    Hours24 = 2
}
/**
  * Time convention
  */
export declare enum DateConvention {
    DateTime = 1,
    Date = 2
}
//# sourceMappingURL=DateTimeConventions.d.ts.map