//#region src/hooks/useMarkdown/utils.d.ts
/**
 * Preprocessing options for markdown content
 */
interface PreprocessOptions {
  citationsLength?: number;
  enableCustomFootnotes?: boolean;
  enableLatex?: boolean;
}
declare const preprocessMarkdownContent: (str: string, {
  enableCustomFootnotes,
  enableLatex,
  citationsLength
}?: PreprocessOptions) => string;
//#endregion
export { preprocessMarkdownContent };
//# sourceMappingURL=utils.d.mts.map