interface Init { debug?: boolean; platform: string; } interface Size { height: number; hint: 0 | 1 | 2 | 3; width: number; } export default class Webview { #private; constructor(init: Init); navigate(url: string): void; set html(html: string); set size(size: Size); run(): void; destroy(): void; } export {}; //# sourceMappingURL=Webview.d.ts.map