@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
30 lines (29 loc) • 1.02 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 { StepperProps } from './interfaces/StepperProps';
import { StepperHandle } from './interfaces/StepperHandle';
import * as React from 'react';
/**
* Represents the [KendoReact Stepper component](https://www.telerik.com/kendo-react-ui/components/layout/stepper).
*
* @example
* ```jsx
* const steps = [
* { label: 'Step 1' },
* { label: 'Step 2' },
* { label: 'Step 3', optional: true }
* ];
*
* const App = () => {
* return (
* <Stepper items={steps} value={1} />
* );
* };
* ```
*/
export declare const Stepper: React.ForwardRefExoticComponent<StepperProps & React.RefAttributes<StepperHandle | null>>;