import { Command, flags } from '@oclif/command'; export default class ClockCreate extends Command { static description: string; static aliases: string[]; static flags: { name: flags.IOptionFlag; start: import("@oclif/parser/lib/flags").IBooleanFlag; 'stop-all': import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }