import { type ReactNode } from 'react'; export declare const getMobileWebviewUrl: (url: string) => string; declare const showWebview: (args: { src: string; /** * 默认为 mobile,最终会在桌面端引入 module,而不是 module#desktop * 因为此方法主要是在桌面端展示移动端页面使用 */ renderMode?: "mobile" | "desktop"; width?: number; footer?: ReactNode; }) => void; declare const injectShowWebview: () => void; export { showWebview, injectShowWebview };