import { default as React } from 'react'; interface PulseProgressBarProps { backgroundColor?: string; color: string; percent: number; height: number; } export declare const PulseProgressBar: React.FC; export {};