import React from "react"; export interface IProps { filePath: string; onEvent?(e: any): any; } declare class SoftBoard extends React.Component { init(filePath: any): Promise; show(mode: any, pos: any): void; isShow(): any; hide(): void; constructor(props: any, context: any); render(): JSX.Element; } export default SoftBoard;