import type { Hooks } from "./registration.js" export interface ShellCreateBefore { command: string cwd: string timeout: number shell: string env: Record } export interface ShellHooks { readonly "create.before": ShellCreateBefore } export interface ShellDomain { readonly hook: Hooks }