import { type DataTestId } from '../../core/types/data-props.js'; import { type StylingProps } from '../../core/types/styling-props.js'; import { type WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for ProgressBarIcon. * @public */ export interface ProgressBarIconProps extends WithChildren, StylingProps, DataTestId { } /** * The ProgressBarIcon subcomponent is rendered inside the ProgressBar component. * @public */ export declare const ProgressBarIcon: (props: ProgressBarIconProps & import("react").RefAttributes) => import("react").ReactElement | null;