import { ConversationService } from './ConversationService';
import { IConversationServiceConfig } from '../../interface/IConversationServiceConfig';
export declare class ConversationServiceHelloWorld extends ConversationService {
    protected config: IConversationServiceConfig;
    private greetings;
    constructor(config: IConversationServiceConfig);
    getResponse(request: Record<string, any>): Promise<any>;
}
