import React from 'react'; interface ProgressProps { done: number; tagValue?: number | string; } /** * Progress component. * * Renders a progress bar that animates the width based on the `done` prop. * * @param props - The component props. * @param props.done - The percentage of progress. */ export declare const Progress: ({ done, tagValue }: ProgressProps) => React.JSX.Element; export {};