import { type Command, program } from 'commander'; import kleur from 'kleur'; import * as loading from './loading'; export declare const copyExampleModule: (name: string, toPath: string) => Promise; export declare const spawn: (cmd: string, params?: string[], env?: NodeJS.ProcessEnv) => Promise; export declare const compact: (list: (T | false | undefined | null | 0)[]) => T[]; export declare const omit: , K extends keyof T>(value: T, k: K) => Omit; export { kleur, program, loading }; export type { Command };