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;
