import type { RuleContext, AST } from "../../../types";
import type { ReferenceExpressions } from "./reference-expression";
export declare function getAttributeValueNodes(element: AST.VElement, name: string, context: RuleContext): AttributeValueExpressions[] | null;
export type AttributeValueExpressions = ReferenceExpressions | AST.VLiteral;
