import React from 'react'; interface Props { block?: boolean; className?: string; name?: string; classic?: boolean; } declare type NativeAttrs = Omit, keyof Props>; export declare type CodeProps = Props & NativeAttrs; declare const Code: React.ForwardRefExoticComponent>; export default Code;