/// import { Reader } from '../reader'; import { Writer } from '../writer'; export declare type ParserOptions = { [name: string]: string; }; export declare function parser(options: ParserOptions): (reader: Reader, writer: Writer) => void; export interface FormatterOptions { [name: string]: string; } export declare function formatter(options?: FormatterOptions): (reader: Reader>, writer: Writer) => void;