/**
 * Module for stream conversion Json to String and String to Json
 * @module sergdudko/objectstream
 * @author Siarhei Dudko <slavianich@gmail.com>
 * @copyright 2020
 * @license MIT
 * @version 2.0.0
 * @requires stream
 */
import { Parser } from "./classes/Parser.js";
import { Stringifer } from "./classes/Stringifer.js";
export { Parser, Stringifer };
declare const objectstream: {
    /**
     * Object to String stream
     */
    Stringifer: typeof Stringifer;
    /**
     * String to Object stream
     */
    Parser: typeof Parser;
};
export default objectstream;
