import type { TmplAstElement } from '@angular-eslint/bundled-angular-compiler'; /** * Extracts the attribute value. * @example * ```ts * getAttributeValue(Element(`
`), 'nonExistent'); // null * getAttributeValue(Element(``), 'role'); // 'none' * getAttributeValue(Element(``), 'aria-checked'); // true * getAttributeValue(Element(``), 'variant'); // PROPERTY * ``` */ export declare function getAttributeValue({ attributes, inputs }: TmplAstElement, attributeName: string): unknown; //# sourceMappingURL=get-attribute-value.d.ts.map