/** * 生成 Mermaid 相关的新手引导配置 * @param showSourceView 是否显示源码查看 * @param hasSvg 是否有已渲染的图表 */ export declare function getDriverConfig(showSourceView: boolean, hasSvg: boolean): { id: string; condition: () => any; onOpen: () => void; steps: ({ element: string; popover: { title: string; description: string; }; isShow?: undefined; } | { element: string; popover: { title: string; description: string; }; isShow: boolean; })[]; }[];