import type { ColorScheme, Density, Token } from "./types"; /** * Given a color scheme and a density value, * this method creates proxies for the master token so that it resolves to the correct theme values. * @param scheme The color scheme of the application. * @param density The density scheme of the application * @returns A proxied master token with all values resolved to the provided schemes. */ export declare function createTokenProxy(scheme: ColorScheme, density: Density): Token;