import type { OdooClientPool } from '../client-pool'; export interface HttpTransportOptions { port: number; host?: string; /** Allowed Odoo base URLs (scheme + host only). Requests to unlisted URLs → 401. */ allowedUrls: string[]; pool: OdooClientPool; trustProxy: boolean; /** express.json body size limit (default: '1mb'). */ bodyLimit?: string; } export interface HttpTransportHandle { close: () => Promise; } export declare function startHttpTransport(options: HttpTransportOptions): Promise; //# sourceMappingURL=http.d.ts.map