/** * Create command - generates agent-specific configuration. */ interface CreateOptions { agent: string; output: string; allow?: string; deny?: string; format: string; } /** Handle create command */ declare function handleCreate(options: CreateOptions): void; export { handleCreate };