/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { MemoryScope } from './scopes'; /** * Interface for enumerating memory scopes. */ export interface ComponentMemoryScopes { getMemoryScopes(): MemoryScope[]; } /** * Check if a ComponentRegistration is ComponentMemoryScopes or not. * * @param {any} component The component registration. * @returns {boolean} Type check result. */ export declare function isComponentMemoryScopes(component: unknown): component is ComponentMemoryScopes;