interface ResultViewerProps { language: "typescript" | "javascript" | "json"; value: string; } /** * Read-only Monaco pane used to render the compiled / transformed output with a * copy button. Wraps `` and adds the toast UI. */ export declare function ResultViewer({ language, value }: ResultViewerProps): import("react/jsx-runtime").JSX.Element; export {};