import { Command } from '@oclif/command'; import { ClocksService } from '../../modules/clocks/clocks.service'; import { ClocksType } from '../../modules/clocks/clocks.type'; export default class ClocksReset extends Command { static description: string; static aliases: string[]; static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag; start: import("@oclif/parser/lib/flags").IBooleanFlag; all: import("@oclif/parser/lib/flags").IBooleanFlag; }; resetAll(clocksService: ClocksService): Promise; resetOne(clocksService: ClocksService, id: number | undefined): Promise; run(): Promise; }