import type { AttributeValue } from "../types.js"; /** * Takes in an AST of an AttributeValue and returns JS code that evaluates to the same value. * @param values - An array of AttributeValues * @param originalCode - The original code that the AST was parsed from, neede to sample the expression code * @returns A JS expression that evaluates to the same value as the AttributeValue */ export declare function attrubuteValuesToJSValue(values: AttributeValue[] | boolean | string, originalCode: string): string; //# sourceMappingURL=attributes-to-values.d.ts.map