export interface WebviewElement extends Element { getURL(): string; isLoading(): boolean; capturePage(): Promise executeJavaScript(code: string): Promise; } export interface NativeImage { toDataURL(): string; }