import type { LLMMessage } from '../../../types';
export { getFieldInfoPrompt } from './gptPrompt';
export declare const getBasePrompt: (model: string, language: 'chinese' | 'english', isMultiple?: boolean, showThoughs?: boolean) => string;
export declare const getUserQuery: (model: string, language: 'chinese' | 'english', isMultiple?: boolean) => LLMMessage[];
