import React from 'react'; import './index.less'; interface StandardParams { code: string; content: string; children?: StandardProps['params']; } interface StandardProps { description?: string[]; params?: StandardParams[]; return?: string[]; tips?: string[]; } interface CodeStandardProps { /** * 参数注释 */ standard?: StandardProps; /** * 标题 */ title?: string; /** * 内容 */ children?: string; } declare const CodeStandard: React.ForwardRefExoticComponent>; export default CodeStandard;