/** * HTTP client for pulling runtime data from the Veryfront dev server's Dashboard API. * * Used by the standalone `veryfront mcp` process to access ErrorCollector, * LogBuffer, and HMR data over HTTP from the user's running `veryfront` process. */ export interface DevServerClientOptions { port: number; } export declare class DevServerClient { private baseUrl; private dashboardSession?; constructor(options: DevServerClientOptions); getLiveErrors(type?: string): Promise; getLiveLogs(options?: { level?: string; source?: string; pattern?: string; limit?: number; since?: number; }): Promise; getStats(): Promise; triggerHmr(path?: string): Promise; private mutate; private pull; private readSuccessBody; private throwForHttpError; private ensureDashboardMutationSession; private fetchWithRetries; } //# sourceMappingURL=dev-server-client.d.ts.map