import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { TaskListItemChildrenProps, TaskListItemProps } from "./TaskListItem.definitions"; /** * @classdesc This is a container for TaskListItem. * @component * @hideconstructor * @param {TaskListItem.TaskListItemProps} props - Properties to be passed to configure this component. * @category Components / Programmable * @subcategory Components */ export declare class TaskListItem extends React.PureComponent { static displayName: string; /** * Dynamic content store * @static * @type {DynamicContentStore} * @readonly */ static readonly Content: DynamicContentStore; static updateAll(): void; /** * Default properties * @static * @type {TaskListItem.TaskListItemProps} * @readonly */ static readonly defaultProps: { itemSize: string; }; render(): JSX.Element; }