import React from "react"; import { StrictChildrenReactNode } from "../../utils/types"; import { ProgressItemProps } from "./ProgressItem/ProgressItem"; export type ProgressProps = { /** * Children elements of the Progress component, which should be one or more `ProgressItem` components. The `Progress` component acts as a container that groups these items together. * This allows for structured display of multiple progress-tracking elements, each representing a distinct task or process. */ children?: StrictChildrenReactNode | StrictChildrenReactNode[]; }; export declare const Progress: ({ children }: ProgressProps) => React.JSX.Element[];