/// import { ParsedMessage, Parser } from './parser'; import { Topic } from '../../topic'; export declare class IrisParser implements Parser { parseMessage(topic: Topic, payload: Buffer): ParsedMessage[]; } export interface IrisParserData { event: 'patch' | string; data?: any[]; message_type: number; seq_id: number; mutation_token: null | string; realtime: boolean; op?: 'add' | 'replace' | string; path?: string; sampled?: boolean; }