export declare class EventDate {
    readonly start?: string;
    readonly end?: string;
    constructor(data: any);
    /**
     * Check if the date range is currently active
     * @returns boolean indicating if the current date is within the range
     */
    isActive(): boolean;
    /**
     * Get formatted date range string
     * @returns Formatted date range or undefined if no dates exist
     */
    getFormattedRange(): string | undefined;
}
