/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { ArrayProperty, MapProperty, ReferenceProperty, SetProperty } from "@fluid-experimental/property-properties"; import { Property } from "./propertyElement.js"; export declare function isReferenceProperty(property: Property): property is ReferenceProperty; export declare function isCollection(property: Property): property is ArrayProperty | MapProperty | SetProperty; //# sourceMappingURL=typeGuards.d.ts.map