export declare const WIZZARDSTEP_CLASSNAME = "k-wizard-step";
declare const states: "focus"[];
export type KendoWizardStepProps = {
    buttons?: React.JSX.Element;
};
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;
