/*!
 * @author electricessence / https://github.com/electricessence/
 * @license MIT
 */
declare const enum DateTimeKind {
    Unspecified = 0,
    Local = 1,
    Utc = 2
}
export default DateTimeKind;
