import { localTunnel } from './tunnel'; import type { LocalTunnel, TunnelOptions } from './tunnel'; export type { LocalTunnel, TunnelOptions }; export declare function createLocalTunnel(port: number): Promise; /** * Deploy a tunnel server to AWS EC2. * Only needed for custom domains — localtunnel.dev is the shared default. */ export declare function deployTunnelServer(config: { domain: string region?: string instanceType?: string prefix?: string enableSsl?: boolean porkbunApiKey?: string porkbunSecretKey?: string verbose?: boolean }): Promise; /** * Destroy a previously deployed tunnel server from AWS. */ export declare function destroyTunnelServer(config: { domain?: string region?: string prefix?: string verbose?: boolean }): Promise; export { localTunnel };