/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import { Command } from '@oclif/command'; import { args } from '@oclif/parser'; import type { PluginType } from 'flipper-common'; export default class Init extends Command { static description: string; static examples: string[]; static args: args.IArg[]; run(): Promise; } export declare function initTemplate(id: string, title: string, pluginType: PluginType, supportedDevices: string[] | undefined, outputDirectory: string): Promise; //# sourceMappingURL=init.d.ts.map