import { noteAnalysis } from 'wiznote-sdk-js-share'; declare const extractLinksFromMarkdown: typeof noteAnalysis.extractLinksFromMarkdown, extractTagsFromMarkdown: typeof noteAnalysis.extractTagsFromMarkdown, getMarkdownFromHtml: typeof noteAnalysis.getMarkdownFromHtml, getResourcesFromHtml: typeof noteAnalysis.getResourcesFromHtml; declare function markdownToHtml(markdown: string): Promise; declare function writeNoteHtml(userGuid: string, kbGuid: string, noteGuid: string, html: string): Promise; declare function writeNoteMarkdown(userGuid: string, kbGuid: string, noteGuid: string, markdown: string): Promise; declare function readNoteMarkdown(userGuid: string, kbGuid: string, noteGuid: string): Promise; declare function readNoteHtml(userGuid: string, kbGuid: string, noteGuid: string): Promise; declare function noteDataExists(userGuid: string, kbGuid: string, noteGuid: string): Promise; declare function writeNoteResource(userGuid: string, kbGuid: string, noteGuid: string, resName: string, data: any): Promise; declare function getMarkdownNoteTemplate(): Promise; declare function getGuideNoteData(): Promise<{ markdown: any; images: string[]; }>; declare function extractNoteTitleAndAbstractFromText(text: string): { title: string; abstract: string; }; declare function processNoteResources(userGuid: string, kbGuid: string, noteGuid: string): Promise; export { markdownToHtml, getMarkdownFromHtml, writeNoteHtml, writeNoteMarkdown, readNoteMarkdown, readNoteHtml, noteDataExists, getResourcesFromHtml, writeNoteResource, extractTagsFromMarkdown, extractLinksFromMarkdown, getMarkdownNoteTemplate, getGuideNoteData, extractNoteTitleAndAbstractFromText, processNoteResources, };