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