/** * @module utils/css */ /** * Generates a CSS custom property name with a given prefix. * @param {string} prefix The prefix to apply to the custom property name. * @param {string} propertyName The base name of the custom property. * @returns {string} The fully formed CSS custom property name (e.g., "--prefix-propertyName"). */ export function getCustomProperty(prefix: string, propertyName: string): string; //# sourceMappingURL=css.d.ts.map