import React from 'react'; interface Props { block?: boolean; width?: string; className?: string; } declare const defaultProps: { block: boolean; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type CodeProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Pick>; export default _default;