import React from "react"; import { type VariantProps } from "../../utils.js"; import { ProgressItemState } from "../../SteppedProgress/domains/index.js"; declare const steppedProgressIconVariants: (props?: ({ state?: ProgressItemState | null | undefined; disabled?: boolean | null | undefined; errored?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface SteppedProgressIconProps extends React.HTMLAttributes, VariantProps { } declare const SteppedProgressIcon: ({ state, errored, disabled, className, ...props }: SteppedProgressIconProps) => React.JSX.Element; export { SteppedProgressIcon, type SteppedProgressIconProps };