import { Command, flags } from '@oclif/command'; declare class BearerPackageInit extends Command { static description: string; static flags: { path: flags.IOptionFlag; force: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; }[]; private cwd; private force; run(): Promise; installDependencies(dependencies: string[]): Promise; addHooksAndScripts(): Promise; initTypescriptProject(): Promise; addTsLintConfig(): Promise; setupJest(): Promise; withLoader(title: string, block: () => Promise): Promise; runCommand(command: string): Promise; } export = BearerPackageInit;