import React from "react"; import type { StandardLonghandProperties } from "csstype"; import { XHComponentCommonProps } from "../../types"; export declare type ProgressProps = { percent: number; showPercent?: boolean; doneColor?: string; percentColor?: string; height?: number; /** * @description 百分比,不要百分号 */ dots?: number[]; /** * 苗条模式 */ solid?: boolean; backgroundColor?: StandardLonghandProperties["color"]; } & XHComponentCommonProps; declare const Progress: React.FC; export default Progress;