import React, { FC } from 'react'; /** * This component has a pitfall that when we set the `padding` in the `containerStyle` property, we should set the `margin` in * the `textContainerStyle` simutaneously. This is because of the reason that I must set the text part `position:absolute` to show the special * overlay effect and the padding doesn't work for absolute child item. */ interface Props { progress: number; text: string; descText?: string; toolTipText?: string; containerStyle?: React.CSSProperties; progressBarStyle?: React.CSSProperties; textContainerStyle?: React.CSSProperties; } export declare const PercentageBar: FC; export {};