import type { DevelopmentConfig } from '../types.js'; /** * @member Config#development * @property {Array} watchDirs - dirs needed watch, when files under these change, application will reload, use relative path * @property {Array} ignoreDirs - dirs don't need watch, including subdirectories, use relative path * @property {Boolean} fastReady - don't wait all plugins ready, default is false. * @property {Boolean} reloadOnDebug - whether reload on debug, default is true. * @property {Boolean} overrideDefault - whether override default watchDirs, default is false. * @property {Boolean} overrideIgnore - whether override default ignoreDirs, default is false. * @property {Array|String} reloadPattern - whether to reload, use https://github.com/sindresorhus/multimatch */ declare const _default: { development: DevelopmentConfig; }; export default _default;