import type { NetlessApp } from "@netless/window-manager"; export type { DocsViewerPage } from "./DocsViewer"; export interface NetlessAppStaticDocsViewerAttributes { /** ScrollTop base on the real page size */ pageScrollTop?: number; } export interface NetlessAppDocsViewerOptions { /** justDocsViewReadonly is used to set the docs view readonly, it will be used in the docs view, and the docs view will be readonly when the app is initialized */ justDocsViewReadonly?: true; } export interface NetlessAppDynamicDocsViewerAttributes { } export interface AppResult { setDocsViewReadonly: (bol: boolean) => void; } declare const NetlessAppDocsViewer: NetlessApp; export default NetlessAppDocsViewer;