import { Length } from './Length'; import { List } from './List'; /** * Get the first entry of `L` * @param L to extract from * @returns [[Any]] * @example * ```ts * ``` */ export declare type Head = Length extends 0 ? never : L[0];