import { Server } from 'http'; interface ScreenshotOptions { width?: number; height?: number; quality?: number; format?: string; } interface ExcalidrawData { elements: any[]; screenshot: Buffer; processed?: any; } export declare function createWebServer(filePath: string): Promise<{ server: Server; port: number; }>; /** * Function to convert a Mermaid diagram to an Excalidraw diagram and screenshot * @param mermaidDiagram - The Mermaid diagram text to convert * @param options - Screenshot options * @returns Promise with screenshot buffer and processed data */ export declare function convertMermaidToExcalidraw(mermaidDiagram: string, options?: ScreenshotOptions): Promise; export {};