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