/**
 * @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<HTMLAttributes<HTMLElement>>;
export declare const ProgressListSubstep: import("react").ForwardRefExoticComponent<{
    /** The current progress state of the substep. */
    status?: ProgressListStepProps["status"];
} & HTMLAttributes<HTMLElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLLIElement>>;
