/** * Generates a new subscriber. */ export declare class SubscriberCreateCommand { command: string; describe: string; builder(yargs: any): any; handler(argv: any): Promise; /** * Creates a file with the given content in the given path. */ protected static createFile(path: string, content: string): Promise; /** * Gets contents of the entity file. */ protected static getTemplate(name: string): string; }