UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

21 lines (20 loc) 636 B
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: { (props: KendoWizardProps & KendoWizardState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: "disabled"[]; options: {}; className: string; defaultOptions: { orientation: string; contentPosition: string; }; }; export default Wizard;