import React from "react"; export interface IProps { filePath: string; } declare class Voices extends React.Component { init(filePath: any): Promise; speak(message: any): void; constructor(props: any, context: any); render(): JSX.Element; } export default Voices;