import type { Parser, ParseResult } from './types.js'; /** Sniff whether content looks like a Claude/ChatGPT JSON export */ export declare function isConversationJson(content: string): boolean; /** Sniff whether content is a markdown conversation export */ export declare function isConversationMarkdown(content: string): boolean; export declare class ConversationParser implements Parser { readonly supportedExtensions: string[]; parse(content: string, filePath: string): Promise; } //# sourceMappingURL=conversation.d.ts.map