import { ID, Tag, Task, User, UserGroup } from '@zeniai/client-epic-state'; export interface SubtaskDetailTableProps { sectionId: string; subtasks: Task[]; tagList: Tag[]; userGroupList: UserGroup[]; userList: User[]; showCreateSubtaskBar?: boolean; onCreateSubtaskClick?: () => void; onCreateTagClick?: (tagName: string) => void; onRowClick?: (subtaskId: ID) => void; } export declare const SubtaskDetailTable: ({ subtasks, sectionId, userList, userGroupList, tagList, showCreateSubtaskBar, onCreateSubtaskClick, onCreateTagClick, onRowClick, }: SubtaskDetailTableProps) => import("react/jsx-runtime").JSX.Element;