import React from 'react'; import { MestCss, MestGenericProps } from "../themes"; import { StyledCodeVariants } from "./style"; type Props = { block?: boolean; name?: string; preCss?: MestCss; codeCss?: MestCss; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type CodeProps = Props & NativeAttrs & StyledCodeVariants; declare const Code: React.FC>; export default Code;