import { type IncomingMessage, type ServerResponse } from 'node:http'; /** * Triggers native OS notification toasts */ export declare function sendOsNotification(title: string, message: string): void; /** * Strips the @zilmate prefix if present and extracts clean prompt instructions */ export declare function parseUbiquityPrompt(text: string): { prompt: string; isTriggered: boolean; }; export declare function handleProcessRequest(req: IncomingMessage, res: ServerResponse): Promise; export declare function startDaemon(): void; //# sourceMappingURL=service.d.ts.map