/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PropType } from 'vue';
/**
* @hidden
*/
export interface StepComputed {
itemClassNames: object;
itemStyles: object;
}
/**
* Represents the [Kendo UI for Vue Step component]({% slug overview_stepper %}).
*
* ```jsx
* props.onChange(e)">
*
* {{ props.emoji }}
*
*
* {{ props.label }}
*
*
* ```
*/
declare const Step: import('vue').DefineComponent;
disabled: PropType;
icon: PropType;
svgIcon: PropType;
index: PropType;
isValid: {
type: PropType;
default: any;
};
focused: PropType;
label: PropType;
optional: PropType;
tabIndex: {
type: PropType;
default: number;
};
text: PropType;
animationDuration: PropType;
isVertical: PropType;
item: PropType;
linear: PropType;
mode: PropType;
numOfSteps: PropType;
value: PropType;
successIcon: PropType;
successSvgIcon: PropType