/// import { WorkflowStatus } from '@staticcms/core/constants/publishModes'; import type { Entry } from '@staticcms/core'; export type BoardEntry = Entry & { boardStatus: WorkflowStatus; }; export default function useWorkflowBoardSections(): { boardSections: Record[]>; entriesById: Record; setBoardSections: import("react").Dispatch[]>>>; };