import type { Color } from "./Color.js"; import type { ShadowToken } from "./ShadowToken.js"; export type ThemeTokens = { foregroundColor: Color | null; foregroundSecondaryColor: Color | null; foregroundMutedColor: Color | null; foregroundDisabledColor: Color | null; backgroundColor: Color | null; backgroundLightColor: Color | null; backgroundDarkColor: Color | null; shadowSmall: ShadowToken | null; shadowMedium: ShadowToken | null; shadowLarge: ShadowToken | null; }; //# sourceMappingURL=ThemeTokens.d.ts.map