/**
 * 删除文件
 * @param filePath 文件路径
 */
export declare const removeFile: (filePath: string) => Promise<void>;
export declare const extractMdFromLLMOutput: (output: string) => string | undefined;
export declare const getOldMarkdownHeadings: (markdownText: string) => string;
export declare const adjustMarkdownHeadings: (markdownText: string, newTitle: string) => string;
