import type { JSX } from 'react';
export type CodeContainerProps = {
    highlightedCode: string;
    toolbar: JSX.Element;
};
export declare function CodeContainer({ highlightedCode, toolbar, }: CodeContainerProps): JSX.Element | null;
