declare type NgrokOptions = {
    enabled?: boolean;
    token: string;
    ingress: string;
    egress: string;
};
declare function initNgrok(options?: Partial<NgrokOptions>): Promise<void>;
export { initNgrok };
