import LongCount from "./lc/long-count";
import { CalendarRound } from "./cr/calendar-round";
import { IPart } from "./i-part";
import { CommentWrapper } from "./comment-wrapper";
export default class FullDate extends CommentWrapper implements IPart {
    cr: CalendarRound;
    lc: LongCount;
    constructor(cr: CalendarRound, lc: LongCount);
    toString(): string;
    isPartial(): boolean;
    equal(other: IPart): boolean;
}
