/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; import type { ProgressListStepProps } from './ProgressListStep'; export type ProgressListSubstepProps = { /** The current progress state of the substep. */ status?: ProgressListStepProps['status']; } & PropsWithChildren>; export declare const ProgressListSubstep: import("react").ForwardRefExoticComponent<{ /** The current progress state of the substep. */ status?: ProgressListStepProps["status"]; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;