/** * Type logic implementation */ type MapAttributeName = T extends '$id' ? 'id' : T extends '$context' ? 'context' : T extends '$maxChars' ? 'maxChars' : T extends '$format' ? 'format' : T; /** * Map the attribute name to the corresponding attribute name in the metadata * @param attrName - The attribute name to map * @returns The mapped attribute name */ export declare function mapAttributeName(attrName: T): MapAttributeName; export {};