export type LiteLLMResult = {
    id: string;
    object: 'chat.completion' | 'chat.completion.chunk';
    created: number;
    model: string;
    choices: Array<{
        index: number;
        message?: {
            role: 'assistant';
            content: string;
        };
        delta?: {
            role?: 'assistant';
            content?: string;
        };
        finish_reason?: string;
    }>;
    usage?: {
        prompt_tokens: number;
        completion_tokens: number;
        total_tokens: number;
    };
    error?: {
        message: string;
        type: string;
        code?: string;
    };
};
//# sourceMappingURL=liteLLMResult.d.ts.map