import { IChatGptChoice } from '../interfaces';
import { ChatGptMessageEntity } from './chat-gpt-message.entity';
export declare class ChatGptChoiceEntity implements IChatGptChoice {
    index: number;
    message: ChatGptMessageEntity;
    finish_reason: string;
    constructor(data?: Partial<ChatGptChoiceEntity>);
}
