export declare const DEFAULT_CLASS = "hods-task-list"; export declare const DEFAULT_INCOMPLETE_TITLE = "Incomplete form"; interface TaskListProps { classBlock?: string; classModifiers?: string | string[]; className?: string; fieldId?: string; formData?: object; id?: string; incompleteTitle?: string; showCompletionOverview?: boolean; notes?: { title?: string; text?: string; }; onTaskAction?: Function; refTitle?: string; refNumber?: string; sections: { name: string; label?: string; skipped?: string; tasks: { name: string; pages: string[]; state?: string; displayName?: string; firstPage?: string; alwaysShowFirstPage?: boolean; }[]; }[]; annotations?: { key?: string; value?: string; }[]; } /** Renders a list of tasks along with the current status for each. Each task that is not in the `Cannot start yet` state can be selected to navigate to that task */ declare const TaskList: ({ id, refTitle, refNumber, notes, incompleteTitle, showCompletionOverview, sections, fieldId, onTaskAction, classBlock, classModifiers, className, formData, annotations, ...attrs }: TaskListProps) => import("react/jsx-runtime").JSX.Element; export default TaskList;