import { FC } from 'react'; import './index.css'; type VolumeIndicatorProps = { /** * 0-1 之间。 */ /** @en * between 0 and 1 */ value: number; /** * 级别数量 */ /** @en * levels block count */ barCount?: number; }; export declare const FcrVolumeIndicator: FC; export {};