import { type CaseTimelineItemView, type SupportCaseView, type SupportWorkLinkView } from '../types.js'; export interface CaseDetailProps { /** Case details including status, priority, assignment, and metadata. */ caseView: SupportCaseView; /** Array of timeline events including interactions and status changes. */ timeline?: CaseTimelineItemView[]; /** Array of linked work items associated with the case. */ workLinks?: SupportWorkLinkView[]; } declare const CaseDetail: import("svelte").Component; type CaseDetail = ReturnType; export default CaseDetail; //# sourceMappingURL=CaseDetail.svelte.d.ts.map