/**
 * Relative path to the local agent source initialized by `ptbk agent init`.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_BOOK_FILE_PATH = "agent.book";
/**
 * Relative path to the message queue root initialized by `ptbk agent init`.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_MESSAGES_DIRECTORY_PATH = "messages";
/**
 * Relative path to queued user messages consumed by `ptbk agent run-once`.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_QUEUED_MESSAGES_DIRECTORY_PATH: string;
/**
 * Relative path to answered messages written by `ptbk agent run-once`.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_FINISHED_MESSAGES_DIRECTORY_PATH: string;
/**
 * Relative path to local knowledge files referenced by the default agent prompt.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_KNOWLEDGE_DIRECTORY_PATH = "knowledge";
/**
 * Relative path to local agent documentation initialized by `ptbk agent init`.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_DOCS_DIRECTORY_PATH = "docs";
/**
 * Relative path to the local Book language manual used by the coding runner prompt.
 *
 * @private internal utility of `ptbk agent`
 */
export declare const AGENT_BOOK_LANGUAGE_MANUAL_FILE_PATH: string;
/**
 * Returns the default local agent book content.
 *
 * @private internal utility of `ptbk agent`
 */
export declare function getDefaultAgentBookContent(): string;
/**
 * Returns the default local Book language manual content.
 *
 * @private internal utility of `ptbk agent`
 */
export declare function getDefaultBookLanguageManualContent(): string;
