declare const getVarName: (variable: string) => string; type CSSVarFunction = `var(--${string})` | `var(--${string}, ${string | number})`; type Contract = { [key: string]: CSSVarFunction | Contract; }; declare const scopedToGlobal: (contract: Contract) => Record; export { getVarName, scopedToGlobal };