/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { IDenyList } from "@fluidframework/server-services-core"; import type { RequestHandler } from "express"; export declare class DenyList implements IDenyList { private readonly blockedDocuments; private readonly blockedTenants; constructor(tenantsDenyList?: string[], blockedDocumentsList?: string[]); isTenantDenied(tenantId: string): boolean; isDocumentDenied(documentId: string): boolean; } export declare function denyListMiddleware(denyList: IDenyList | undefined, skipDocumentDenyListCheck?: boolean): RequestHandler; //# sourceMappingURL=denyList.d.ts.map