// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 declare module 'marked-terminal' { import type { MarkedExtension } from 'marked'; export function markedTerminal(options?: Record): MarkedExtension; } declare module '*?raw' { const content: string; export default content; }