UNPKG

@redocly/theme

Version:

Shared UI components lib

10 lines (9 loc) 390 B
import React from 'react'; import type { JSX } from 'react'; import type { CodeWalkthroughFile } from '@redocly/config'; export type CodePanelProps = { files: CodeWalkthroughFile[]; downloadAssociatedFiles: CodeWalkthroughFile[]; preview: React.ReactNode[]; }; export declare function CodePanel({ files, downloadAssociatedFiles, preview, }: CodePanelProps): JSX.Element | null;