/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseProps } from '../../common/BaseProps.js'; /** * Represents the props of the [KendoReact ChunkProgressBar component](https://www.telerik.com/kendo-react-ui/components/progressbars/chunkprogressbar). */ export interface ChunkProgressBarProps extends BaseProps { /** * Defines the number of chunks into which the ChunkProgressBar is divided. Defaults to `5`. * Each chunk visually represents a portion of the progress bar. * * @default 5 * * @example * ```jsx * * ``` */ chunkCount?: number; }