/** * Input data types for mapping-based columns * @public */ export declare const MappingKeyType: { readonly string: "string"; readonly number: "number"; readonly boolean: "boolean"; }; export type MappingKeyType = (typeof MappingKeyType)[keyof typeof MappingKeyType];