/** * Checks whether a property name is valid (does not collide with existing DOM API properties) * * @param name * @returns {boolean} */ declare const isValidPropertyName: (name: string) => boolean; export default isValidPropertyName;