/** * Parses a .properties format * @param {string} sText the contents a of a .properties file * @returns a object with key/value pairs parsed from the .properties file format * @public */ declare const parseProperties: (sText: string) => {}; export default parseProperties;