import React, { CSSProperties } from 'react'; import './DemoViewer.less'; export interface DemoViewerProps extends React.HTMLAttributes { meta?: { title?: React.ReactElement; }; detail?: React.ReactElement; contentProps?: React.HTMLAttributes; customPanelStyle?: CSSProperties; src?: string; sources: { type: string; content: string; }[]; } declare const DemoViewer: React.FC; export default DemoViewer;