type Type = "boolean" | "idref" | "nmtoken" | "decimal" | "string" | "int" | "nmtokens" | "idrefs"; export interface Info { type: Type; allowEmpty?: boolean; global?: boolean; values?: string[]; minValue?: number; } declare const ariaAttributes: Record; export default ariaAttributes;