import { Command } from "@oclif/command"; export default class Generate extends Command { static description: string; static examples: string[]; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; length: import("@oclif/parser/lib/flags").IOptionFlag; numbers: import("@oclif/parser/lib/flags").IBooleanFlag; symbols: import("@oclif/parser/lib/flags").IBooleanFlag; "capital-letters": import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }