/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ /** * Return the attribute name that reflects from the given property * name on the given element. * * Example: for all elements, the property 'className' reflects to * the 'class' attribute, so: * reflectedAttributeName('div', 'className') returns 'class' */ export declare const reflectedAttributeName: (elementName: string, propertyName: string) => string | undefined; //# sourceMappingURL=reflected-attributes.d.ts.map