/** * Design tokens index - exports all token groups and the CSS custom properties string. */ export { colors } from './colors.js'; export type { ColorToken } from './colors.js'; export { typography } from './typography.js'; export type { TypographyToken } from './typography.js'; export { motion } from './motion.js'; export type { MotionToken } from './motion.js'; /** * Returns the complete CSS custom property declaration block for all design tokens. * Embed this in a `:root` or `:host` block. */ export declare function getTokensCSS(): string; //# sourceMappingURL=index.d.ts.map