interface GrokOptions {
    apiKey: string;
    model?: string;
    temperature?: number;
    maxTokens?: number;
}
export declare class ChatGrok {
    private apiKey;
    private model;
    private temperature;
    private maxTokens;
    constructor(options: GrokOptions);
    chat(input: string): Promise<string>;
    explain(input: string): Promise<string>;
    analyze(input: string): Promise<string>;
}
export {};
