import Command from '@oclif/command'; export declare abstract class CLICommand extends Command { log(message?: string): void; time(label: string, format?: string | undefined): { end: () => void; }; measure(label: string, format: string | undefined, closure: () => Promise): Promise; }