/**
 * Change the current working directory and save it to a local config file
 * @param {string} directoryPath - Path to change to
 * @returns {Promise<void>}
 */
export declare function changeDirectory(directoryPath: string): Promise<void>;
/**
 * Get the current directory from the local config file
 * @returns {Promise<string>} The current directory path or '/' if not set
 */
export declare function getCurrentDirectory(): Promise<string>;
