import type React from "react"; export interface ProgressBarProps { children: React.ReactNode; progress: number; /** * Visual tick at the end of the progress bar * @default false */ tick?: boolean; } export declare const ProgressBar: ({ progress, tick, children, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;