import type React from "react";
export interface StepProps {
    /**
     * Should be `Step` sub-components such as `StepLabel`
     */
    children: React.ReactNode;
}
export declare function Step({ children, ...props }: StepProps): import("react/jsx-runtime").JSX.Element;
