/** VS Code / TextMate theme object (frozen at runtime). */ interface PierreTheme { readonly name: string; readonly type: "light" | "dark"; readonly colors: Readonly>; readonly tokenColors: ReadonlyArray<{ readonly name?: string; readonly scope?: string | string[]; readonly settings: Readonly>; }>; readonly semanticTokenColors: Readonly>>; } declare const theme: PierreTheme; export default theme;