/**
 * Live Svelte Debugger - Specialized tool for Phoenix LiveView + Svelte debugging
 *
 * Handles the unique challenges of debugging live_svelte components
 */
import { Page } from 'playwright';
export interface LiveSvelteDebugInfo {
    liveViewState: any;
    svelteComponents: any[];
    hooks: any[];
    props: any;
    events: any[];
    consoleErrors: any[];
}
export declare class LiveSvelteDebugger {
    private page;
    attachToPage(page: Page): Promise<void>;
    getDebugInfo(): Promise<LiveSvelteDebugInfo>;
    debugLiveSvelteIssue(): Promise<{
        issue: string;
        details: any;
        suggestions: string[];
    }>;
}
//# sourceMappingURL=live-svelte-debugger.d.ts.map