import { Length } from './Length';
import { Tail } from './Tail';
import { List } from './List';
/**
 * Get the last index of `L`
 * @param L to get from
 * @returns `number`
 * @example
 * ```ts
 * ```
 */
export declare type LastKey<L extends List> = Length<Tail<L>>;
