import { Collection } from "@stryke/types/base"; //#region src/is-collection.d.ts /** * Check if the provided value's type is `Collection` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `Collection` */ declare function isCollection(value: any): value is Collection; //#endregion export { isCollection }; //# sourceMappingURL=is-collection.d.cts.map