import { StepperStatus } from '@viasat/beam-shared/components/stepper'; export interface StepperStepProps extends React.ComponentPropsWithoutRef<'li'> { /** * Specify the heading text for Stepper */ heading?: React.ReactNode; /** * Specify the body text for horizontal Stepper or custom content for vertical Stepper */ children?: React.ReactNode; /** * Specify icons or numbers for the marker */ markerContent?: string | React.ReactNode; /** * Specify if step is interactive */ onClick?: (event: React.MouseEvent) => void; /** * Specify the status of a step */ status?: StepperStatus; } export declare const StepperStep: (props: StepperStepProps) => import("react/jsx-runtime").JSX.Element;