import { TunnelHandler } from '@muppet-kit/shared';

declare function cloudflare(): TunnelHandler;

/**
 * Ngrok tunnel handler
 */
declare function ngrok(options?: {
    apiKey?: string;
}): TunnelHandler;

export { cloudflare, ngrok };
