export type CloudflareTunnelCommandInput = { action: "create"; domain: string; proxyPort: number; } | { action: "destroy"; domain: string; }; /** * Builds cloudflared commands for expose tunnel setup/teardown. * Expects: domain is a fully-qualified hostname. */ export declare function cloudflareTunnelCommandBuild(input: CloudflareTunnelCommandInput): { command: string; args: string[]; }; //# sourceMappingURL=cloudflareTunnelCommandBuild.d.ts.map