import { NovelAI } from "../NovelAI"; export declare class StoriesManager { private ai; constructor(ai: NovelAI); get(id: string): Promise<{ id: string; meta: string; data: { storyMetadataVersion: number; id: string; remoteId: string; remoteStoryId: string; title: string; description: string; textPreview: string; favorite: boolean; tags: any[]; createdAt: number; lateUpdatedAt: number; isModified: boolean; }; lastUpdatedAt: number; changeIndex: number; type: "stories"; }>; get(): Promise<{ id: string; meta: string; data: { storyMetadataVersion: number; id: string; remoteId: string; remoteStoryId: string; title: string; description: string; textPreview: string; favorite: boolean; tags: any[]; createdAt: number; lateUpdatedAt: number; isModified: boolean; }; lastUpdatedAt: number; changeIndex: number; type: "stories"; }[]>; }