import { IntersectKeys } from './IntersectKeys'; import { Match } from '../Any/_Internal'; import { Pick } from './Pick'; /** * Get the intersecting fields of `O` & `O1` * (If `match = 'default'`, no type checks are done) * @param O to check similarities with * @param O1 to check similarities against * @returns [[Object]] * @example * ```ts * ``` */ export declare type Intersect = Pick>;