import { type AppwriteCliCredentials } from "appwrite-utils-helpers"; export interface PassthroughOptions { credentials?: AppwriteCliCredentials; /** * Explicit sidecar path from --config . When set, * dirname(resolve(configPath)) is the project root and findProjectRoot is skipped. */ configPath?: string; } /** * Forward an arbitrary appwrite CLI invocation through our auth bridge. * Example: `appwrite-migrate --passthrough -- functions list` → `appwrite functions list` */ export declare function runPassthrough(args: string[], opts: PassthroughOptions): Promise;