export type TaskPriority = 'low' | 'med' | 'high'; interface TaskRowProps { title: string; completed?: boolean; priority?: TaskPriority; due?: string; assignee?: string; /** Hide completion checkbox — stakeholder / read-only lists */ readonly?: boolean; class?: string; ontoggle?: (completed: boolean) => void; onclick?: () => void; } declare const TaskRow: import("svelte").Component; type TaskRow = ReturnType; export default TaskRow;