export declare function isArray<T = any>(candidate: unknown): candidate is Array<T>;
export declare function isSet<T = any>(candidate: unknown): candidate is Set<T>;
export declare function isMap<K = any, V = any>(candidate: unknown): candidate is Map<K, V>;
export declare function isObject(candidate: unknown): boolean;
export declare function isSeq<T>(candidate: T): boolean;
