import { Command, flags } from '@oclif/command'; /** * Create a .clarkrc file in your project root */ export default class Init extends Command { /** * description */ static description: string; /** * flags */ static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag; script: flags.IOptionFlag; }; /** * implementation */ run(): Promise; }