import * as React from "react"; declare type IState = { componentId: string; }; declare type IProps = { source: any; onPress?: (event: any) => void; onFinishPlay?: (event: any) => void; waveFormStyle?: any; }; declare class WaveVisual extends React.PureComponent { constructor(props: IProps); componentDidMount(): void; makeId: () => string; onPress: (e: any) => void; onFinishPlay: (e: any) => void; render(): JSX.Element; } export default WaveVisual;