/// import { KafkaParserConfig } from '../interfaces'; export declare class KafkaParser { protected readonly keepBinary: boolean; constructor(config?: KafkaParserConfig); parse(data: any): T; decode(value: Buffer): object | string | null | Buffer; }