import { List } from './List';
/**
 * Transform a [[List]] into an [[Union]]
 * @param L to transform
 * @returns [[Any]]
 * @example
 * ```ts
 * ```
 */
export declare type UnionOf<L extends List> = L[number];
