import * as vite from 'vite';
import { Config } from '@ngrok/ngrok';

/**
 * Vite ngrok plugin allowing you to expose your local server to the internet.
 */
declare const ngrok: (options?: Config | string) => {
    name: string;
    configureServer(this: void, { config, httpServer }: vite.ViteDevServer): void;
};

export { ngrok };
