///
type CodeBlockProps = {
isInline: boolean;
children: unknown;
langType?: string;
};
export declare const InlineCode: ({ children, }: Omit) => JSX.Element;
export declare const CodeBlock: ({ code, langType, }: Omit & {
code: string;
}) => JSX.Element;
export {};