/** * Class for translating .rpt files between .txt and JSON format. */ export declare class SwmmRpt { /** * Constructor for the SwmmRpt class. */ constructor(); /** * Parses the text .rpt file text into a JSON object. * * @param text text contents of a .rpt file. * @returns JSON formatted verion of .rpt file. */ static parseReport(text: any): {} | undefined; }