/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { IDocument, IServiceConfiguration } from "@fluidframework/server-services-core"; /** * Whether a document exists and is not functionally deleted. * @internal */ export declare function isDocumentValid(document: IDocument): boolean; /** * Whether a document's active session aligns with the service's location. * @internal */ export declare function isDocumentSessionValid(document: IDocument, serviceConfiguration: IServiceConfiguration): boolean; //# sourceMappingURL=validateDocument.d.ts.map