/** * synap init * * Three paths based on environment detection: * A: OpenClaw found → connect mode (primary funnel, 250K users) * B: Server, no OpenClaw → bundle mode (fresh setup) * C: Laptop/desktop → need hosting */ import { detectOpenClaw } from "../lib/openclaw.js"; interface InitOptions { podUrl?: string; apiKey?: string; skipIs?: boolean; } export declare function init(opts: InitOptions): Promise; export declare function skillStep(openclawFound: boolean, oc?: ReturnType): Promise; export declare function seedStep(podUrl: string, apiKey: string, oc: ReturnType): Promise; export declare function isStep(podUrl: string, apiKey: string, openclawFound: boolean): Promise; export {};