import type { MappingKey } from '../../../mapping/base/types'; import type { MappingKeyType } from '../types'; /** * Converts a Mapping key (which is a string when configured in HTML) to the * given keyType. The converted value can then be used to compare against * values in the table data. */ export declare const resolveKeyWithType: (key: unknown, keyType: MappingKeyType) => MappingKey | undefined;