/** * @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. */ readonly status?: ProgressListStepProps['status']; } & Readonly>>; /** * A substep nested within a Progress List step. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-progress-list--docs Progress List docs at Amsterdam Design System} */ export declare const ProgressListSubstep: import("react").ForwardRefExoticComponent<{ /** The current progress state of the substep. */ readonly status?: ProgressListStepProps["status"]; } & Readonly>> & import("react").RefAttributes>;