import { Commands } from '@kui-shell/core'; interface Options extends Commands.ParsedOptions { h?: boolean; help?: boolean; o?: string; output?: string; n?: string; namespace?: string; f?: string; filename?: string; w?: boolean; watch?: boolean; command?: string; verb?: string; entityType?: string; } export default Options;