import { type AppwriteCliCredentials } from "appwrite-utils-helpers"; export interface InitFlowOptions { cwd: string; credentials?: AppwriteCliCredentials; /** * Explicit sidecar path from --config . When set, * dirname(resolve(configPath)) is the project root and findProjectRoot is skipped. */ configPath?: string; } export declare function runInitFlow(opts: InitFlowOptions): Promise;