import { AtomName } from '../../types/atom';
import type { CustomPromptOptions } from '../../types';
import { BaseAtom } from '../base';
import type { LLMMessage } from '../../types/llm';
export declare class CustomPrompt extends BaseAtom<any, CustomPromptOptions> {
    name: AtomName;
    isLLMAtom: boolean;
    constructor(context: any, option: CustomPromptOptions);
    getLLMMessages(query?: string): LLMMessage[];
    parseLLMContent(resJson: any, toolJson?: any): any;
}
export declare const registerCustomPromptAtom: () => void;
