import { MeTagTagKeyTypeEnum } from './MeTagTagKeyTypeEnum.js';
type MeTagTagKey = {
enum?: string[] | null;
key?: string;
maxLength?: number | null;
minValue?: number | null;
optional?: boolean;
pattern?: string | null;
type?: MeTagTagKeyTypeEnum;
};
export { MeTagTagKey };