/** * Returns the config directory, respecting XDG_CONFIG_HOME. * Creates the directory if it does not exist. */ export declare function getConfigDir(): string; /** Returns the full path to the global config file. */ export declare function getConfigPath(): string; /** Returns the full path to a project-local config file in the CWD. */ export declare function getProjectConfigPath(): string;