import { _Omit as _OOmit } from '../Object/Omit'; import { _ListOf } from '../Object/ListOf'; import { Key } from './_Internal'; import { List } from './List'; import { ObjectOf } from './ObjectOf'; /** * @hidden */ export declare type _Omit = _ListOf<_OOmit, `${K & number}` | K>>; /** * Remove out of `L` the entries of key `K` * @param L to remove from * @param K to chose entries * @returns [[List]] * @example * ```ts * ``` */ export declare type Omit = L extends unknown ? _Omit : never;