import { Server as RestServer } from 'restify';
import type { Gateway, Notifier } from '../server/index.js';
import type { Liquid } from 'liquidjs';
export declare function setupGatewayHttp({ gateway, notifier, liquid }: {
    gateway: Gateway;
    notifier: Notifier;
    liquid: Liquid;
}): RestServer;
