/** * GitHub Dark / GitHub Light, ported to Monaco. * * GENERATED FILE — do not hand-edit. * Source: `github-vscode-theme@6.3.5` ("GitHub Dark" / "GitHub Light"). * Regenerate with `npm run build:monaco-theme`. * * VS Code themes key off TextMate scopes, which Monaco's Monarch tokenizers do * not emit; `scripts/generate-github-monaco-theme.ts` maps between the two and * explains why the upstream package cannot be a runtime dependency. */ import type * as Monaco from 'monaco-editor/editor/editor.api'; export type MonacoThemeMode = 'dark' | 'light'; /** The Monaco theme data for a mode. Registered by `loader.ts` via `defineTheme`. */ export declare function githubMonacoTheme(mode: MonacoThemeMode): Monaco.editor.IStandaloneThemeData;