import { ClientAnalytics } from '@zeniai/client-analytics'; import { ID, JEAccruedSchedule, ScheduleTypes, ScheduledJournalEntry } from '@zeniai/client-epic-state'; export interface Props { analytics: ClientAnalytics; controllerEmails: string[]; controllerUserIds: string[]; isCanceling: boolean; isDeleting: boolean; jeScheduleId?: string; jeScheduleTransaction?: JEAccruedSchedule; scheduledJournalEntry?: ScheduledJournalEntry[]; onCancelAccrual: (scheduleType: ScheduleTypes, jeScheduleID: ID, row?: number) => void; onDelete: () => void; } export default function ScheduleDetailsAccruedTitleWithOptions({ isCanceling, isDeleting, analytics, jeScheduleTransaction, controllerEmails, controllerUserIds, jeScheduleId, onCancelAccrual, onDelete, scheduledJournalEntry, }: Readonly): import("react/jsx-runtime").JSX.Element;