import * as React from "react"; import { type ProgressRootProps } from "./components/index.js"; interface ProgressBarProps extends ProgressRootProps { valuePosition?: "start" | "end" | "both"; } declare const ProgressBar: (({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element) & { original: ({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element) & { original: ({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types.js").ComponentDecorator<(({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element) & { original: ({ valuePosition, className, ...props }: ProgressBarProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { ProgressBar, type ProgressBarProps };