import React from "react"; import { ProgressItemState } from "../../SteppedProgress/domains/index.js"; interface SteppedProgressLabelProps extends React.HTMLAttributes { label: string; state: ProgressItemState; disabled: boolean; } declare const SteppedProgressLabel: ({ label, state, disabled, className, ...props }: SteppedProgressLabelProps) => React.JSX.Element; export { SteppedProgressLabel, type SteppedProgressLabelProps };