import { CliContext, CommandCompose, ICommand } from '../cli/index.js'; export declare class InitCommand implements ICommand { signature: string; description: string; protected tmproot: string | null; compose(): CommandCompose; get root(): string; handle(ctx: CliContext): Promise; generate(ctx: CliContext): Promise; }