import { Iteration } from './Iteration'; /** * Get the position of `I` (**string**) * @param I to query * @returns [[String]] * @example * ```ts * import {I} from 'ts-toolbelt' * * type i = I.IterationOf<'20'> * * type test0 = I.Key // '20' * type test1 = I.Key> // '21' * ``` */ export declare type Key = `${I[0]}`;