export declare const ELEMENT_FORCED_PROPERTY_QUALIFIER_START = "{"; export declare const ELEMENT_FORCED_PROPERTY_QUALIFIER_END = "}"; /** * Returns true if the given attribute name is wrapped in the forced property qualifiers * @param {string} name * @returns {boolean} */ export declare function matchesForcedPropertyQualifier(name: string): boolean; /** * Makes a forced property normalized (e.g. look like a proper attribute) * @param {string} name * @returns {boolean} */ export declare function normalizeForcedProperty(name: string): string;