import { Collection } from "../utility-types/base"; /** * 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` */ export declare function isCollection(value: any): value is Collection;