import { Except } from '@quenk/noni/lib/control/error'; import { Parser } from '../../parser'; /** * BufferToStringAdapter adapts the buffer list * of the NodeHTTPTransport to a string that is passed * to another parser for final parsing. */ export declare class BufferToStringAdapter implements Parser { parser: Parser; constructor(parser: Parser); accepts: string; apply(raw: Buffer[]): Except; }