/** * Single-message sender — sends one prompt to the server and exits. * Used by `fuzzycortex-cli message `. * Follows the same HTTP pattern as cortex.js. */ interface SingleMessageOptions { serverUrl?: string; model?: string; system?: string; maxTokens?: number; json?: boolean; } export declare function sendSingleMessage(prompt: string, options?: SingleMessageOptions): Promise; export {}; //# sourceMappingURL=single-message.d.ts.map