import { type ChildProcess } from 'node:child_process'; export type TunnelResult = { url: string; provider: 'cloudflare'; detail: string; child?: ChildProcess; }; export declare function isCloudflaredAvailable(): Promise; export declare function ensureCloudflared(): Promise; export declare function startCloudflareQuickTunnel(localUrl: string, timeoutMs?: number): Promise; export declare function cloudflareTunnelDoctor(): Promise<{ name: string; ok: boolean; detail: string; }>; //# sourceMappingURL=tunnel.d.ts.map