export declare const toolingPackageKeywords: string[]; /** * Whether or not the package object represents a dolittle tooling boilerplate package * * @export * @param {*} packageJson */ export declare function packageIsToolingPackage(packageJson: any): boolean; export declare type ToolingPackage = { /** * The name of the package * * @type {string} */ name: string; /** * The version of the package * * @type {string} */ version: string; /** * The description of the package * * @type {string} */ description: string; /** * The keywords of the package * * @type {string[]} */ keywords: string[]; /** * The dolittle configuration * * @type {{tooling: string}} */ dolittle: { tooling: string; }; }; export declare type ToolingPackageDescriptor = { /** * The name of the package * * @type {string} */ name: string; /** * The description of the package * * @type {string} */ description: string; };