export declare class SimpleDate {
    readonly month: number;
    readonly day: number;
    readonly year: number;
    readonly hour: number;
    readonly minute: number;
    readonly second: number;
    static fromDate(date: Date): SimpleDate;
    static parseFromMDY(text: string): SimpleDate;
    static parseFromExifDate(dateValueYMD: string): SimpleDate | null;
    private static parsePart;
    constructor(month: number, day: number, year: number, hour?: number, minute?: number, second?: number);
    isEqualTo(other: SimpleDate): boolean;
    compareTo(other: SimpleDate): number;
    isGreaterThan(other: SimpleDate): boolean;
    isLessThan(other: SimpleDate): boolean;
    isLessThanOrEqualTo(other: SimpleDate): boolean;
    nextDay(): SimpleDate;
    private toDate;
    toString(): string;
    private asTwoDigits;
    toStringDateOnly(): string;
}
