import { Settings } from './config.js'; export declare const getFilePathInConfigDir: (filename: string) => string; export declare const makeConfigDirIfNotExist: () => void; export declare const makeConfigIfNotExist: () => any; /** * loadConfig will attempt to read and then JSON.parse the file * TODO: Validate its legit config * * If the directory / path to config does not exist it will throw! * * It's assumed makeConfigIfNotExist() has already been called. */ export declare const loadConfig: () => Settings;