import React from 'react'; type OneOrManyChildren = React.ReactElement | React.ReactElement[]; type MultiCodeBlockProps = { secondaryTheme?: boolean; title?: string; children: OneOrManyChildren; }; export declare const Container: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme; as?: React.ElementType; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; export declare const MultiCodeBlock: (props: MultiCodeBlockProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const CodeBlockMarkdownWrapper: (props: { children?: React.ReactNode; }) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const MultiCodeBlockMarkdownWrapper: (props: { title: string; children: React.ReactNode[]; }) => import("@emotion/react/jsx-runtime").JSX.Element; export {};