/** * Given an object path (an array of strings) and a value, return a CSS var() function that represents it. * * Example: * Input: * path: [color, wisteria, 100] * value: #f0f1f4 * * Output: * "var(--color-wisteria-100, #f0f1f4)" * */ export declare const objectPathToCssVarFunction: (path: string[], value: unknown) => string; /** * Given an object path (an array of strings), return a CSS variable identifier. * * Example: * Input: [color, wisteria, 100] * * Output: "--color-wisteria-100" */ export declare const objectPathToCssVarIdentifier: (path: string[]) => string;