import { type StyledProps } from "./Styled"; /** * moaui styled code block with syntax highlighting * * @param props - The props of the component (children, language, title) * @link https://github.com/react-syntax-highlighter/react-syntax-highlighter * @returns A code block with syntax highlighting */ declare function CodeBlock(props: StyledProps): import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; children: string; language: import("../../Common/UnionType").CustomUnionType; title: string; radius: number; width: string; backgroundColor: string; titlePadding: number; titlePaddingX: number; titlePaddingY: number; codePadding: number; codePaddingX: number; codePaddingY: number; }; export default CodeBlock; export { type StyledProps as CodeBlockProps, SampleProps as CodeBlockSample, }; //# sourceMappingURL=index.d.ts.map