/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * Represents the props of the TaskBoardColumnBody component */ export interface TaskBoardColumnBodyProps { /** * Determines the children nodes. */ children: React.ReactNode; } /** * Represents the TaskBoardColumnBody component. */ export declare const TaskBoardColumnBody: React.FunctionComponent;