UNPKG

@octopusdeploy/design-system-components

Version:
9 lines (8 loc) 275 B
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;