import { Project, SourceFile } from 'ts-morph'; import { CliCommand, CliCommandReturnVal } from '../../../shared/cli-command'; import { VendurePluginRef } from '../../../shared/vendure-plugin-ref'; import { GeneratePluginOptions } from './types'; export declare const createNewPluginCommand: CliCommand; export declare function createNewPlugin(options?: Partial): Promise; export declare function generatePlugin(project: Project, options: GeneratePluginOptions): Promise<{ plugin: VendurePluginRef; modifiedSourceFiles: SourceFile[]; }>;