import type { TSchema } from '../schema/index'; import { Kind } from '../symbols/index'; export interface TMappedKey extends TSchema { [Kind]: 'MappedKey'; static: T[number]; keys: T; } export declare function MappedKey(T: [...T]): TMappedKey;