@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
39 lines (38 loc) • 1.12 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { BaseEvent } from '@progress/kendo-react-common';
import { StepperHandle } from './../interfaces/StepperHandle';
/**
* The `StepperOnNavigateEvent` event.
*/
export declare class StepperOnNavigateEvent implements BaseEvent<StepperHandle> {
/**
* The Stepper component.
*/
target: StepperHandle;
/**
* The synthetic keyboard event.
*/
syntheticEvent: React.KeyboardEvent;
/**
* The native DOM event.
*/
nativeEvent: any;
/**
* The previous index of the Step.
*/
prevIndex: number;
/**
* The new index of the Step.
*/
nextIndex: number;
/**
* @hidden
*/
constructor(target: StepperHandle, prevIndex: number, nextIndex: number);
}