import { Intersect as OIntersect } from '../Object/Intersect'; import { Match } from '../Any/_Internal'; import { ListOf } from '../Object/ListOf'; import { ObjectOf } from './ObjectOf'; import { List } from './List'; /** * Get the intersecting entries of `L` & `L1` * (If `match = 'default'`, no type checks are done) * @param L to check similarities with * @param L1 to check similarities against * @returns [[List]] * @example * ```ts * ``` */ export declare type Intersect = ListOf, ObjectOf, match>>;