export interface InteractiveInitOptions { dir?: string | undefined; force?: boolean | undefined; store?: "memory" | "file" | "sqlite" | "postgres" | "redis" | undefined; } export interface InteractiveInitResult { dir: string; target: string; model: string; sandbox: string; agentName: string; store?: "memory" | "file" | "sqlite" | "postgres" | "redis"; files: string[]; } export declare function runInteractiveInit(options?: InteractiveInitOptions): Promise; //# sourceMappingURL=init-interactive.d.ts.map