/** * @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'; /** * Represents the props of the [Kendo UI for Vue ChunkProgressBar component]({% slug overview_chunkprogressbar %}). */ export interface ChunkProgressBarProps extends BaseProps { /** * Sets the number of chunks into which the ChunkProgressBar will be split. Defaults to `5`. */ chunkCount?: number; }