import { OmniaContext } from "@omnia/fx"; import { DocumentService } from "./DocumentService"; import { DurableInfo, LinkItem } from "../models"; export declare class DurableLinkService { documentService: DocumentService; omniaCtx: OmniaContext; isDurableLinkEnabled(): boolean; processDurableLink(selectedItem: LinkItem): Promise; private buildOpenInWebUrl; getDurableInfo(fileUrl: string, docId?: string, siteId?: string): Promise; }