@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
21 lines (20 loc) • 696 B
TypeScript
export declare const WIZZARDSTEP_CLASSNAME = "k-wizard-step";
declare const states: "focus"[];
export type KendoWizardStepProps = {
buttons?: React.JSX.Element;
/** @aria aria-label for the tabpanel, e.g. "Step 2 of 3" */
stepLabel?: string;
};
export type KendoWizardStepState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const WizardStep: {
(props: KendoWizardStepProps & KendoWizardStepState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: "focus"[];
options: {};
className: string;
defaultOptions: {
buttons: import("react/jsx-runtime").JSX.Element;
};
};
export default WizardStep;