/**
 * @file theme/syntax/presets.ts
 * @output 12 community syntax theme presets
 *
 * Color values sourced from each theme's official VS Code extension.
 * All original themes are MIT licensed. Only color values are extracted.
 * See THIRD_PARTY_LICENSES.md for full attribution.
 *
 * @see https://github.com/facebook/astryx/issues/1148
 */
import { type SyntaxThemeDefinition } from './defineSyntaxTheme';
/** One Dark Pro (Binaryify) — MIT */
export declare const oneDarkPro: SyntaxThemeDefinition;
/** Dracula (Zeno Rocha) — MIT */
export declare const dracula: SyntaxThemeDefinition;
/** Monokai (Wimer Hazenberg, VS Code built-in) — MIT */
export declare const monokai: SyntaxThemeDefinition;
/** Nord (Arctic Ice Studio / Sven Greb) — MIT */
export declare const nord: SyntaxThemeDefinition;
/** Tokyo Night (enkia) — MIT */
export declare const tokyoNight: SyntaxThemeDefinition;
/** Catppuccin Mocha (Catppuccin contributors) — MIT */
export declare const catppuccinMocha: SyntaxThemeDefinition;
/** GitHub Light (GitHub Primer team) — MIT */
export declare const githubLight: SyntaxThemeDefinition;
/** GitHub Dark (GitHub Primer team) — MIT */
export declare const githubDark: SyntaxThemeDefinition;
/** Solarized Light (Ethan Schoonover) — MIT */
export declare const solarizedLight: SyntaxThemeDefinition;
/** One Light (GitHub / Atom team) — MIT */
export declare const oneLight: SyntaxThemeDefinition;
/** Catppuccin Latte (Catppuccin contributors) — MIT */
export declare const catppuccinLatte: SyntaxThemeDefinition;
/** Tokyo Night Light (enkia) — MIT */
export declare const tokyoNightLight: SyntaxThemeDefinition;
/** All dark syntax theme presets */
export declare const darkSyntaxPresets: readonly [SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition];
/** All light syntax theme presets */
export declare const lightSyntaxPresets: readonly [SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition];
/** All syntax theme presets */
export declare const allSyntaxPresets: readonly [SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition, SyntaxThemeDefinition];
//# sourceMappingURL=presets.d.ts.map