import { DynamicModule } from '@nestjs/common'; import { SharepointService } from './sharepoint.service'; export interface SharepointConnectionOptions { hostName: string; siteName: string; } export declare class SharepointModule { private readonly _spService; static SiteUri: string; constructor(_spService: SharepointService); onModuleInit(): Promise; static register(options: SharepointConnectionOptions): Promise; }