/** * Get config paths for the app at `cwd`. * @param cwd - base path of the config file * @param customConfigFileName - optional custom config file name to use instead of defaults */ export declare function getConfigPath(cwd: string, customConfigFileName?: string): { /** Default JSON app config path */ defaultAppConfigPath: string; /** All app config paths including JSON and JS */ appConfigPaths: string[]; generatedConfigPath: string; }; //# sourceMappingURL=getConfigPath.d.ts.map