import { MessageModel } from '../../MessageModel';
type ChatGptResponseType = {
    choices: Array<{
        delta: {
            content?: string | null;
        };
        finish_reason: 'stop' | 'length' | 'tool_calls' | 'content_filter' | 'function_call' | null;
    }>;
};
export declare const chatGptStreamParser: <T extends ChatGptResponseType>(value: string, assistant: MessageModel<any>) => T | undefined;
export {};
