import { SheetModel } from '../types'; export declare const setTheme: (mapObject: any) => void; export declare const createMap: (centralTopic?: string, options?: {}) => SheetModel; export declare const addTopic: (parentObject: any, mainTopic?: string, options?: {}) => { id: string; title: string; titleUnedited: boolean; }; export declare const setHyperlink: (topicObject: any, href: any) => void; export declare const fold: (topicObject: any) => void; export declare const setTextNotes: (topicObject: any, textContent: any, htmlContent: any) => void; export declare const makeKeyValueTable: (topicObject: any, keyValueObject: any) => void; export declare const allTopics: (mapObject: any) => any[]; export declare const addRelationship: (mapObject: any, topic1: any, topic2: any, options?: {}) => { id: string; end1Id: any; end2Id: any; titleUnedited: boolean; }; export declare const addSingleBoundary: (parentObject: any, topicObject: any, options?: {}) => { id: string; range: string; }; export declare const addSingleSummary: (parentObject: any, topicObject: any, options?: {}) => { summaryTopic: { id: string; title: string; titleUnedited: boolean; }; summary: { id: string; range: string; topicId: string; }; };