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