/** * Parser for Slack channel export JSON. * Format: [{ user, text, ts, ... }] */ import type { ParseResult } from './types.js'; export declare function parseSlack(input: string): ParseResult; //# sourceMappingURL=slack-parser.d.ts.map