/**
 * @file syntax/index.ts
 * @position Re-exports for the syntax theme subsystem
 *
 * No `'use client'` here on purpose. Most of what this barrel exports is data
 * (presets, token defaults) or pure functions, and a directive on the barrel
 * turns every export into a client reference for a server importer — so
 * `dracula.tokens` reads back `undefined` instead of colors. `SyntaxTheme.tsx`
 * carries its own directive, which is what the provider actually needs.
 */
export { syntaxTokenDefaults } from './tokens';
export type { SyntaxTokenName } from './tokens';
export { defineSyntaxTheme, syntaxThemeStyle, syntaxThemeToCSS } from './defineSyntaxTheme';
export type { SyntaxThemeDefinition, SyntaxThemeInput, SyntaxThemeTokenKey, SyntaxThemeTokenMap, SyntaxThemeTokenInput, SyntaxTokenValue, } from './defineSyntaxTheme';
export { SyntaxTheme, useSyntaxTheme } from './SyntaxTheme';
export type { UseSyntaxThemeReturn } from './SyntaxTheme';
export { oneDarkPro, dracula, monokai, nord, tokyoNight, catppuccinMocha, githubDark, githubLight, solarizedLight, oneLight, catppuccinLatte, tokyoNightLight, darkSyntaxPresets, lightSyntaxPresets, allSyntaxPresets, } from './presets';
//# sourceMappingURL=index.d.ts.map