import React from 'react'; export interface AdjustTimeComparePanelProps { title: string; subtitle: string; icon: React.ReactNode; startAt: Date; endAt: Date; startTimeHighlighted?: boolean; endTimeHighlighted?: boolean; ticketCount?: number; selectableTicketCount?: number; onTicketCountClick?: () => void; addedDuration?: string; minimumExtensionDuration?: string; totalDuration: string; overtimeDuration?: string; shouldShowEffectiveUntilHint?: boolean; effectiveUntilTime?: string; resourceAvailabilityWarning?: string; active?: boolean; } export declare const AdjustTimeComparePanel: React.FC;