export declare class Cycle {
    static fromIdentifier(identifier: string): Cycle;
    static fromDate(date: Date): Cycle;
    private serial;
    private constructor();
    get identifier(): string;
    get effectiveStart(): Date;
    get effectiveEnd(): Date;
    private get year();
    private get ordinal();
}
