export declare const ELEMENT_FORCED_ATTRIBUTE_QUALIFIER_START = "["; export declare const ELEMENT_FORCED_ATTRIBUTE_QUALIFIER_END = "]"; /** * Returns true if the given attribute name is wrapped in the forced attribute qualifiers * @param {string} name * @returns {boolean} */ export declare function matchesForcedAttributeQualifier(name: string): boolean; /** * Makes a forced attribute normalized (e.g. look like a proper attribute) * @param {string} name * @returns {boolean} */ export declare function normalizeForcedAttribute(name: string): string;