import Command from "./Command"; declare class KeyGenerateCommand extends Command { protected signature: string; protected description: string; handle(): Promise<0>; protected generateRandomKey(): string; protected setKeyInEnvironmentFile(key: string): void; } export default KeyGenerateCommand;