export declare class Prompt { private static readonly url; static prompt(message: string, object: string, token: string): Promise; } export interface PromptResponse { providerResponse: string; requestId: string; success: boolean; text: string; timestamp: string; }