UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

13 lines (12 loc) 490 B
import { KendoComponent } from '../_types/component'; export declare const WIZZARD_CLASSNAME = "k-wizard"; declare const states: "disabled"[]; export type KendoWizardProps = { orientation?: "vertical" | "horizontal"; contentPosition?: "right" | "left"; }; export type KendoWizardState = { [K in (typeof states)[number]]?: boolean; }; export declare const Wizard: KendoComponent<KendoWizardProps & KendoWizardState & React.HTMLAttributes<HTMLDivElement>>; export default Wizard;