import type { Parser } from './types.js'; export type { Parser, ParseResult, ParsedSection } from './types.js'; /** * Return the appropriate parser for the given file extension. * When filePath + content are provided, sniff conversation formats first * so that Claude/ChatGPT JSON exports and markdown conversations route to * the ConversationParser rather than the generic JSON/Markdown parsers. */ export declare function getParser(extension: string, filePath?: string, content?: string): Parser | undefined; export declare function getSupportedExtensions(): string[]; //# sourceMappingURL=index.d.ts.map