import type { Registry } from '../wing/index.js'; export interface DiffMountOptions { readonly root: HTMLElement; readonly before: unknown; readonly after: unknown; readonly registry: Registry; readonly allowLocalUrls?: boolean; readonly locale?: string; } export interface DiffMount { update(before: unknown, after: unknown): void; unmount(): void; } export declare function diffButton(doc: Document, title: string, path: string): HTMLButtonElement; export declare function mountDiff(options: DiffMountOptions): DiffMount; //# sourceMappingURL=mount.d.ts.map