/** * uri 生成 处理中心 * generate uri center (include generate url-scheme && generate universal-link && generate Intent uri) */ import { CallAppInstance } from '../index'; export interface Intent { package: string; scheme: string; action?: string; category?: string; component?: string; } export declare const generateScheme: (instance: CallAppInstance) => string; export declare const generateUniversalLink: (instance: CallAppInstance) => string; export declare const generateIntent: (instance: CallAppInstance) => string;