/** * SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ import React from 'react'; declare type Props = { /** * Component to render. */ as?: React.ElementType; /** * Flag to indicate if step should show its been completed * @deprecated since v3.91.0 - this is no longer necessary. */ complete?: boolean; /** * Flag to indicate if step should be disabled */ disabled?: boolean; /** * HTML properties that are applied to the step element. */ elementProps?: React.HTMLAttributes; innerRef?: React.Ref; /** * Value to display above step icon */ label?: React.ReactText; /** * Callback for when the icon is clicked */ onClick?: (event: React.MouseEvent) => void; /** * Path to clay-css spritemap */ spritemap?: string; /** * Value to display below step icon */ subTitle?: React.ReactText; }; declare const MultiStepNavIndicator: React.ForwardRefExoticComponent>; export default MultiStepNavIndicator;